interface ColumnStatisticsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_ColumnStatisticsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.ColumnStatisticsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const columnStatisticsConfigurationProperty: databrew.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