interface AllowedStatisticsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.AllowedStatisticsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_AllowedStatisticsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.AllowedStatisticsProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.AllowedStatisticsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnJobPropsMixin » AllowedStatisticsProperty |
Configuration of statistics that are allowed to be run on columns that contain detected entities.
When undefined, no statistics will be computed on columns that contain detected entities.
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 allowedStatisticsProperty: databrew.CfnJobPropsMixin.AllowedStatisticsProperty = {
statistics: ['statistics'],
};
Properties
| Name | Type | Description |
|---|---|---|
| statistics? | string[] | One or more column statistics to allow for columns that contain detected entities. |
statistics?
Type:
string[]
(optional)
One or more column statistics to allow for columns that contain detected entities.

.NET
Go
Java
Python
TypeScript