interface SyntheticDataColumnPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnAnalysisTemplate_SyntheticDataColumnPropertiesProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty |
Python | aws_cdk.aws_cleanrooms.CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnAnalysisTemplate » SyntheticDataColumnPropertiesProperty |
Properties that define how a specific data column should be handled during synthetic data generation, including its name, type, and role in predictive modeling.
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 syntheticDataColumnPropertiesProperty: cleanrooms.CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty = {
columnName: 'columnName',
columnType: 'columnType',
isPredictiveValue: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the data column as it appears in the dataset. |
| column | string | The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column. |
| is | boolean | IResolvable | Indicates if this column contains predictive values that should be treated as target variables in machine learning models. |
columnName
Type:
string
The name of the data column as it appears in the dataset.
columnType
Type:
string
The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.
isPredictiveValue
Type:
boolean | IResolvable
Indicates if this column contains predictive values that should be treated as target variables in machine learning models.
This affects how the synthetic data generation preserves statistical relationships.

.NET
Go
Java
Python
TypeScript