interface ColumnSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnRulesetPropsMixin.ColumnSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnRulesetPropsMixin_ColumnSelectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnRulesetPropsMixin.ColumnSelectorProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnRulesetPropsMixin.ColumnSelectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnRulesetPropsMixin » ColumnSelectorProperty |
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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const columnSelectorProperty: databrew_mixins.CfnRulesetPropsMixin.ColumnSelectorProperty = {
name: 'name',
regex: 'regex',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of a column from a dataset. |
| regex? | string | A regular expression for selecting a column from a dataset. |
name?
Type:
string
(optional)
The name of a column from a dataset.
regex?
Type:
string
(optional)
A regular expression for selecting a column from a dataset.

.NET
Go
Java
Python
TypeScript