@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.854Z") @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()
The description of the ruleset.
|
String |
getName()
The name of the ruleset.
|
Object |
getRules()
Contains metadata about the ruleset.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
String |
getTargetArn()
The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.
|
@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()
For more information, see Tag .
@Stability(value=Stable) static CfnRulesetProps.Builder builder()
CfnRulesetProps.Builder of CfnRulesetPropsCopyright © 2022. All rights reserved.