Interface CreateDataQualityRulesetRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateDataQualityRulesetRequest.Builder,
,CreateDataQualityRulesetRequest> GlueRequest.Builder
,SdkBuilder<CreateDataQualityRulesetRequest.Builder,
,CreateDataQualityRulesetRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateDataQualityRulesetRequest
-
Method Summary
Modifier and TypeMethodDescriptionclientToken
(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.dataQualitySecurityConfiguration
(String dataQualitySecurityConfiguration) The name of the security configuration created with the data quality encryption option.description
(String description) A description of the data quality ruleset.A unique name for the data quality ruleset.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.A Data Quality Definition Language (DQDL) ruleset.A list of tags applied to the data quality ruleset.targetTable
(Consumer<DataQualityTargetTable.Builder> targetTable) A target table associated with the data quality ruleset.targetTable
(DataQualityTargetTable targetTable) A target table associated with the data quality ruleset.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
-
name
A unique name for the data quality ruleset.
- Parameters:
name
- A unique name for the data quality ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
A description of the data quality ruleset.
- Parameters:
description
- A description of the data quality ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleset
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
- Parameters:
ruleset
- A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
A list of tags applied to the data quality ruleset.
- Parameters:
tags
- A list of tags applied to the data quality ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetTable
A target table associated with the data quality ruleset.
- Parameters:
targetTable
- A target table associated with the data quality ruleset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetTable
default CreateDataQualityRulesetRequest.Builder targetTable(Consumer<DataQualityTargetTable.Builder> targetTable) A target table associated with the data quality ruleset.
This is a convenience method that creates an instance of theDataQualityTargetTable.Builder
avoiding the need to create one manually viaDataQualityTargetTable.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totargetTable(DataQualityTargetTable)
.- Parameters:
targetTable
- a consumer that will call methods onDataQualityTargetTable.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dataQualitySecurityConfiguration
CreateDataQualityRulesetRequest.Builder dataQualitySecurityConfiguration(String dataQualitySecurityConfiguration) The name of the security configuration created with the data quality encryption option.
- Parameters:
dataQualitySecurityConfiguration
- The name of the security configuration created with the data quality encryption option.- 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.
-
overrideConfiguration
CreateDataQualityRulesetRequest.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
CreateDataQualityRulesetRequest.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.
-