Interface CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplatePropsMixin
@Stability(Stable)
public static interface CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
ColumnClassificationDetailsProperty columnClassificationDetailsProperty = ColumnClassificationDetailsProperty.builder()
.columnMapping(List.of(SyntheticDataColumnPropertiesProperty.builder()
.columnName("columnName")
.columnType("columnType")
.isPredictiveValue(false)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnMapping
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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysisTemplatePropsMixin.SyntheticDataColumnPropertiesProperty>- See Also:
-
builder
@Stability(Stable) static CfnAnalysisTemplatePropsMixin.ColumnClassificationDetailsProperty.Builder builder()
-