interface StatisticsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.StatisticsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_StatisticsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.StatisticsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.StatisticsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » StatisticsConfigurationProperty |
Configuration of evaluations for a profile job.
This configuration can be used to select evaluations and override the parameters of selected evaluations.
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 statisticsConfigurationProperty: databrew_mixins.CfnJobPropsMixin.StatisticsConfigurationProperty = {
includedStatistics: ['includedStatistics'],
overrides: [{
parameters: {
parametersKey: 'parameters',
},
statistic: 'statistic',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| included | string[] | List of included evaluations. |
| overrides? | IResolvable | (IResolvable | Statistic)[] | List of overrides for evaluations. |
includedStatistics?
Type:
string[]
(optional)
List of included evaluations.
When the list is undefined, all supported evaluations will be included.
overrides?
Type:
IResolvable | (IResolvable | Statistic)[]
(optional)
List of overrides for evaluations.

.NET
Go
Java
Python
TypeScript