Interface DataQualityRulesetProps
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 DataQualityRulesetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:51.712Z")
@Stability(Experimental)
public interface DataQualityRulesetProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Construction properties for 
DataQualityRuleset.
 Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.alpha.*;
 DataQualityTargetTable dataQualityTargetTable;
 DataQualityRulesetProps dataQualityRulesetProps = DataQualityRulesetProps.builder()
         .rulesetDqdl("rulesetDqdl")
         .targetTable(dataQualityTargetTable)
         // the properties below are optional
         .clientToken("clientToken")
         .description("description")
         .rulesetName("rulesetName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDataQualityRulesetPropsstatic final classAn implementation forDataQualityRulesetProps - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(experimental) The client token of the ruleset.default String(experimental) The description of the ruleset.(experimental) The dqdl of the ruleset.default String(experimental) The name of the ruleset.getTags()(experimental) Key-Value pairs that define tags for the ruleset.(experimental) The target table of the ruleset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getRulesetDqdl
(experimental) The dqdl of the ruleset. - 
getTargetTable
(experimental) The target table of the ruleset. - 
getClientToken
(experimental) The client token of the ruleset. - 
getDescription
(experimental) The description of the ruleset. - 
getRulesetName
(experimental) The name of the ruleset.Default: cloudformation generated name
 - 
getTags
(experimental) Key-Value pairs that define tags for the ruleset.Default: empty tags
 - 
builder
- Returns:
 - a 
DataQualityRulesetProps.BuilderofDataQualityRulesetProps 
 
 -