@Stability(value=Stable)
public static interface CfnJob.ColumnSelectorProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.ColumnSelectorProperty.Builder
A builder for
CfnJob.ColumnSelectorProperty |
static class |
CfnJob.ColumnSelectorProperty.Jsii$Proxy
An implementation for
CfnJob.ColumnSelectorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.ColumnSelectorProperty.Builder |
builder() |
default String |
getName()
The name of a column from a dataset.
|
default String |
getRegex()
A regular expression for selecting a column from a dataset.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getRegex()
@Stability(value=Stable) static CfnJob.ColumnSelectorProperty.Builder builder()
Copyright © 2022. All rights reserved.