interface ColumnClassificationDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnAnalysisTemplate.ColumnClassificationDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnAnalysisTemplate_ColumnClassificationDetailsProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnAnalysisTemplate.ColumnClassificationDetailsProperty |
Python | aws_cdk.aws_cleanrooms.CfnAnalysisTemplate.ColumnClassificationDetailsProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnAnalysisTemplate » 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-lib';
const columnClassificationDetailsProperty: cleanrooms.CfnAnalysisTemplate.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)[]
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