interface StatisticOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.StatisticOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_StatisticOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.StatisticOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.StatisticOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnJobPropsMixin » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const statisticOverrideProperty: databrew.CfnJobPropsMixin.StatisticOverrideProperty = {
parameters: {
parametersKey: 'parameters',
},
statistic: 'statistic',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters? | { [string]: string } | IResolvable | A map that includes overrides of an evaluation’s parameters. |
| statistic? | string | The name of an evaluation. |
parameters?
Type:
{ [string]: string } | IResolvable
(optional)
A map that includes overrides of an evaluation’s parameters.
statistic?
Type:
string
(optional)
The name of an evaluation.

.NET
Go
Java
Python
TypeScript