Interface StartDataQualityRulesetEvaluationRunRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<StartDataQualityRulesetEvaluationRunRequest.Builder,
,StartDataQualityRulesetEvaluationRunRequest> GlueRequest.Builder
,SdkBuilder<StartDataQualityRulesetEvaluationRunRequest.Builder,
,StartDataQualityRulesetEvaluationRunRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
StartDataQualityRulesetEvaluationRunRequest
-
Method Summary
Modifier and TypeMethodDescriptionadditionalDataSources
(Map<String, DataSource> additionalDataSources) A map of reference strings to additional data sources you can specify for an evaluation run.additionalRunOptions
(Consumer<DataQualityEvaluationRunAdditionalRunOptions.Builder> additionalRunOptions) Additional run options you can specify for an evaluation run.additionalRunOptions
(DataQualityEvaluationRunAdditionalRunOptions additionalRunOptions) Additional run options you can specify for an evaluation run.clientToken
(String clientToken) Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.dataSource
(Consumer<DataSource.Builder> dataSource) The data source (Glue table) associated with this run.dataSource
(DataSource dataSource) The data source (Glue table) associated with this run.numberOfWorkers
(Integer numberOfWorkers) The number ofG.1X
workers to be used in the run.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.An IAM role supplied to encrypt the results of the run.rulesetNames
(String... rulesetNames) A list of ruleset names.rulesetNames
(Collection<String> rulesetNames) A list of ruleset names.The timeout for a run in minutes.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
dataSource
The data source (Glue table) associated with this run.
- Parameters:
dataSource
- The data source (Glue table) associated with this run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSource
default StartDataQualityRulesetEvaluationRunRequest.Builder dataSource(Consumer<DataSource.Builder> dataSource) The data source (Glue table) associated with this run.
This is a convenience method that creates an instance of theDataSource.Builder
avoiding the need to create one manually viaDataSource.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todataSource(DataSource)
.- Parameters:
dataSource
- a consumer that will call methods onDataSource.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
role
An IAM role supplied to encrypt the results of the run.
- Parameters:
role
- An IAM role supplied to encrypt the results of the run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfWorkers
The number of
G.1X
workers to be used in the run. The default is 5.- Parameters:
numberOfWorkers
- The number ofG.1X
workers to be used in the run. The default is 5.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeout
The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters
TIMEOUT
status. The default is 2,880 minutes (48 hours).- Parameters:
timeout
- The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and entersTIMEOUT
status. The default is 2,880 minutes (48 hours).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
- Parameters:
clientToken
- Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalRunOptions
StartDataQualityRulesetEvaluationRunRequest.Builder additionalRunOptions(DataQualityEvaluationRunAdditionalRunOptions additionalRunOptions) Additional run options you can specify for an evaluation run.
- Parameters:
additionalRunOptions
- Additional run options you can specify for an evaluation run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalRunOptions
default StartDataQualityRulesetEvaluationRunRequest.Builder additionalRunOptions(Consumer<DataQualityEvaluationRunAdditionalRunOptions.Builder> additionalRunOptions) Additional run options you can specify for an evaluation run.
This is a convenience method that creates an instance of theDataQualityEvaluationRunAdditionalRunOptions.Builder
avoiding the need to create one manually viaDataQualityEvaluationRunAdditionalRunOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toadditionalRunOptions(DataQualityEvaluationRunAdditionalRunOptions)
.- Parameters:
additionalRunOptions
- a consumer that will call methods onDataQualityEvaluationRunAdditionalRunOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
rulesetNames
A list of ruleset names.
- Parameters:
rulesetNames
- A list of ruleset names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rulesetNames
A list of ruleset names.
- Parameters:
rulesetNames
- A list of ruleset names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalDataSources
StartDataQualityRulesetEvaluationRunRequest.Builder additionalDataSources(Map<String, DataSource> additionalDataSources) A map of reference strings to additional data sources you can specify for an evaluation run.
- Parameters:
additionalDataSources
- A map of reference strings to additional data sources you can specify for an evaluation run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StartDataQualityRulesetEvaluationRunRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
StartDataQualityRulesetEvaluationRunRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-