aws-cdk-lib.aws_databrew.CfnJob.StatisticsConfigurationProperty

interface StatisticsConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnJob.StatisticsConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_StatisticsConfigurationProperty
Javasoftware.amazon.awscdk.services.databrew.CfnJob.StatisticsConfigurationProperty
Pythonaws_cdk.aws_databrew.CfnJob.StatisticsConfigurationProperty
TypeScript aws-cdk-lib » aws_databrew » CfnJob » 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 { aws_databrew as databrew } from 'aws-cdk-lib';
const statisticsConfigurationProperty: databrew.CfnJob.StatisticsConfigurationProperty = {
  includedStatistics: ['includedStatistics'],
  overrides: [{
    parameters: {
      parametersKey: 'parameters',
    },
    statistic: 'statistic',
  }],
};

Properties

NameTypeDescription
includedStatistics?string[]List of included evaluations.
overrides?IResolvable | IResolvable | StatisticOverrideProperty[]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 | StatisticOverrideProperty[] (optional)

List of overrides for evaluations.