interface AllowedStatisticsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.AllowedStatisticsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_AllowedStatisticsProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.AllowedStatisticsProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.AllowedStatisticsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const allowedStatisticsProperty: databrew_mixins.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