Interface CreateDataQualityRulesetRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateDataQualityRulesetRequest.Builder,CreateDataQualityRulesetRequest>,GlueRequest.Builder,SdkBuilder<CreateDataQualityRulesetRequest.Builder,CreateDataQualityRulesetRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateDataQualityRulesetRequest
public static interface CreateDataQualityRulesetRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<CreateDataQualityRulesetRequest.Builder,CreateDataQualityRulesetRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateDataQualityRulesetRequest.BuilderclientToken(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.CreateDataQualityRulesetRequest.BuilderdataQualitySecurityConfiguration(String dataQualitySecurityConfiguration)The name of the security configuration created with the data quality encryption option.CreateDataQualityRulesetRequest.Builderdescription(String description)A description of the data quality ruleset.CreateDataQualityRulesetRequest.Buildername(String name)A unique name for the data quality ruleset.CreateDataQualityRulesetRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateDataQualityRulesetRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateDataQualityRulesetRequest.Builderruleset(String ruleset)A Data Quality Definition Language (DQDL) ruleset.CreateDataQualityRulesetRequest.Buildertags(Map<String,String> tags)A list of tags applied to the data quality ruleset.default CreateDataQualityRulesetRequest.BuildertargetTable(Consumer<DataQualityTargetTable.Builder> targetTable)A target table associated with the data quality ruleset.CreateDataQualityRulesetRequest.BuildertargetTable(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 Detail
-
name
CreateDataQualityRulesetRequest.Builder name(String 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
CreateDataQualityRulesetRequest.Builder description(String 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
CreateDataQualityRulesetRequest.Builder ruleset(String 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
CreateDataQualityRulesetRequest.Builder tags(Map<String,String> 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
CreateDataQualityRulesetRequest.Builder targetTable(DataQualityTargetTable 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.Builderavoiding the need to create one manually viaDataQualityTargetTable.builder().When the
Consumercompletes,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:
targetTable(DataQualityTargetTable)
-
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
CreateDataQualityRulesetRequest.Builder 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.
- 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)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateDataQualityRulesetRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-