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: