interface StatisticOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.StatisticOverrideProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.StatisticOverrideProperty |
Python | aws_cdk.aws_databrew.CfnJob.StatisticOverrideProperty |
TypeScript | @aws-cdk/aws-databrew » CfnJob » StatisticOverrideProperty |
Override of a particular evaluation for a profile job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as databrew from '@aws-cdk/aws-databrew';
const statisticOverrideProperty: databrew.CfnJob.StatisticOverrideProperty = {
parameters: {
parametersKey: 'parameters',
},
statistic: 'statistic',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters | IResolvable | { [string]: string } | A map that includes overrides of an evaluation’s parameters. |
| statistic | string | The name of an evaluation. |
parameters
Type:
IResolvable | { [string]: string }
A map that includes overrides of an evaluation’s parameters.
statistic
Type:
string
The name of an evaluation.

.NET
Java
Python
TypeScript