Interface CfnRuleset.ColumnSelectorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleset.ColumnSelectorProperty.Jsii$Proxy
- Enclosing class:
CfnRuleset
@Stability(Stable)
public static interface CfnRuleset.ColumnSelectorProperty
extends software.amazon.jsii.JsiiSerializable
Selector of a column from a dataset for profile job configuration.
One selector includes either a column name or a regular expression.
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.*; ColumnSelectorProperty columnSelectorProperty = ColumnSelectorProperty.builder() .name("name") .regex("regex") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuleset.ColumnSelectorProperty
static final class
An implementation forCfnRuleset.ColumnSelectorProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of a column from a dataset.- See Also:
-
getRegex
A regular expression for selecting a column from a dataset.- See Also:
-
builder
-