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();