interface ColumnClassificationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnAnalysisTemplatePropsMixin_ColumnClassificationDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnAnalysisTemplatePropsMixin » ColumnClassificationDetailsProperty |
Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const columnClassificationDetailsProperty: cleanrooms_mixins.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty = {
columnMapping: [{
columnName: 'columnName',
columnType: 'columnType',
isPredictiveValue: false,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | (IResolvable | Synthetic)[] | A mapping that defines the classification of data columns for synthetic data generation and specifies how each column should be handled during the privacy-preserving data synthesis process. |
columnMapping?
Type:
IResolvable | (IResolvable | Synthetic)[]
(optional)
A mapping that defines the classification of data columns for synthetic data generation and specifies how each column should be handled during the privacy-preserving data synthesis process.

.NET
Go
Java
Python
TypeScript