interface ColumnClassificationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnAnalysisTemplatePropsMixin_ColumnClassificationDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const columnClassificationDetailsProperty: cleanrooms.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