interface ColumnStatisticsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.ColumnStatisticsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_ColumnStatisticsConfigurationProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.ColumnStatisticsConfigurationProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| statistics | IResolvable | Statistics | Configuration for evaluations. |
| selectors? | IResolvable | (IResolvable | Column)[] | List of column selectors. |
statistics
Type:
IResolvable | Statistics
Configuration for evaluations.
Statistics can be used to select evaluations and override parameters of evaluations.
selectors?
Type:
IResolvable | (IResolvable | Column)[]
(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.

.NET
Go
Java
Python
TypeScript