aws-cdk-lib.aws_databrew.CfnJob.ColumnStatisticsConfigurationProperty

interface ColumnStatisticsConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnJob.ColumnStatisticsConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_ColumnStatisticsConfigurationProperty
Javasoftware.amazon.awscdk.services.databrew.CfnJob.ColumnStatisticsConfigurationProperty
Pythonaws_cdk.aws_databrew.CfnJob.ColumnStatisticsConfigurationProperty
TypeScript aws-cdk-lib » aws_databrew » CfnJob » ColumnStatisticsConfigurationProperty

Configuration for column evaluations for a profile job.

ColumnStatisticsConfiguration can be used to select evaluations and override parameters of evaluations for particular columns.

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 columnStatisticsConfigurationProperty: databrew.CfnJob.ColumnStatisticsConfigurationProperty = {
  statistics: {
    includedStatistics: ['includedStatistics'],
    overrides: [{
      parameters: {
        parametersKey: 'parameters',
      },
      statistic: 'statistic',
    }],
  },

  // the properties below are optional
  selectors: [{
    name: 'name',
    regex: 'regex',
  }],
};

Properties

NameTypeDescription
statisticsIResolvable | StatisticsConfigurationPropertyConfiguration for evaluations.
selectors?IResolvable | IResolvable | ColumnSelectorProperty[]List of column selectors.

statistics

Type: IResolvable | StatisticsConfigurationProperty

Configuration for evaluations.

Statistics can be used to select evaluations and override parameters of evaluations.


selectors?

Type: IResolvable | IResolvable | ColumnSelectorProperty[] (optional)

List of column selectors.

Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.