Interface CfnJob.ColumnSelectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.ColumnSelectorProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.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: