@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:05.436Z") @Stability(value=Stable) public interface CfnRulesetProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRulesetProps.Builder
A builder for
CfnRulesetProps |
static class |
CfnRulesetProps.Jsii$Proxy
An implementation for
CfnRulesetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnRulesetProps.Builder |
builder() |
default String |
getDescription()
`AWS::DataBrew::Ruleset.Description`.
|
String |
getName()
`AWS::DataBrew::Ruleset.Name`.
|
Object |
getRules()
`AWS::DataBrew::Ruleset.Rules`.
|
default List<CfnTag> |
getTags()
`AWS::DataBrew::Ruleset.Tags`.
|
String |
getTargetArn()
`AWS::DataBrew::Ruleset.TargetArn`.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getRules()
@Stability(value=Stable) @NotNull String getTargetArn()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnRulesetProps.Builder builder()
CfnRulesetProps.Builder of CfnRulesetPropsCopyright © 2022. All rights reserved.