interface ColumnStatisticsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_ColumnStatisticsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const columnStatisticsConfigurationProperty: databrew_mixins.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty = {
selectors: [{
name: 'name',
regex: 'regex',
}],
statistics: {
includedStatistics: ['includedStatistics'],
overrides: [{
parameters: {
parametersKey: 'parameters',
},
statistic: 'statistic',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| selectors? | IResolvable | (IResolvable | Column)[] | List of column selectors. |
| statistics? | IResolvable | Statistics | Configuration for 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.
statistics?
Type:
IResolvable | Statistics
(optional)
Configuration for evaluations.
Statistics can be used to select evaluations and override parameters of evaluations.

.NET
Go
Java
Python
TypeScript