aws-cdk-lib.aws_databrew.CfnRuleset.ColumnSelectorProperty

interface ColumnSelectorProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnRuleset.ColumnSelectorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnRuleset_ColumnSelectorProperty
Javasoftware.amazon.awscdk.services.databrew.CfnRuleset.ColumnSelectorProperty
Pythonaws_cdk.aws_databrew.CfnRuleset.ColumnSelectorProperty
TypeScript aws-cdk-lib » aws_databrew » CfnRuleset » 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 { aws_databrew as databrew } from 'aws-cdk-lib';
const columnSelectorProperty: databrew.CfnRuleset.ColumnSelectorProperty = {
  name: 'name',
  regex: 'regex',
};

Properties

NameTypeDescription
name?stringThe name of a column from a dataset.
regex?stringA 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.