Class CfnAnalysisTemplate.ColumnClassificationDetailsProperty
Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.
Inherited Members
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysisTemplate.ColumnClassificationDetailsProperty : CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Syntax (vb)
Public Class CfnAnalysisTemplate.ColumnClassificationDetailsProperty Implements CfnAnalysisTemplate.IColumnClassificationDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CleanRooms;
var columnClassificationDetailsProperty = new ColumnClassificationDetailsProperty {
ColumnMapping = new [] { new SyntheticDataColumnPropertiesProperty {
ColumnName = "columnName",
ColumnType = "columnType",
IsPredictiveValue = false
} }
};
Synopsis
Constructors
| ColumnClassificationDetailsProperty() | Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis. |
Properties
| ColumnMapping | 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. |
Constructors
ColumnClassificationDetailsProperty()
Contains classification information for data columns, including mappings that specify how columns should be handled during synthetic data generation and privacy analysis.
public ColumnClassificationDetailsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CleanRooms;
var columnClassificationDetailsProperty = new ColumnClassificationDetailsProperty {
ColumnMapping = new [] { new SyntheticDataColumnPropertiesProperty {
ColumnName = "columnName",
ColumnType = "columnType",
IsPredictiveValue = false
} }
};
Properties
ColumnMapping
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.
public object ColumnMapping { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAnalysisTemplate.ISyntheticDataColumnPropertiesProperty)[]