Interface CfnRulesetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRulesetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:14.229Z") @Stability(Stable) public interface CfnRulesetProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRuleset.

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.databrew.*;
 CfnRulesetProps cfnRulesetProps = CfnRulesetProps.builder()
         .name("name")
         .rules(List.of(RuleProperty.builder()
                 .checkExpression("checkExpression")
                 .name("name")
                 // the properties below are optional
                 .columnSelectors(List.of(ColumnSelectorProperty.builder()
                         .name("name")
                         .regex("regex")
                         .build()))
                 .disabled(false)
                 .substitutionMap(List.of(SubstitutionValueProperty.builder()
                         .value("value")
                         .valueReference("valueReference")
                         .build()))
                 .threshold(ThresholdProperty.builder()
                         .value(123)
                         // the properties below are optional
                         .type("type")
                         .unit("unit")
                         .build())
                 .build()))
         .targetArn("targetArn")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: