Interface CfnAnalysisTemplate.ColumnClassificationDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplate.ColumnClassificationDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplate
@Stability(Stable)
public static interface CfnAnalysisTemplate.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.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 classA builder forCfnAnalysisTemplate.ColumnClassificationDetailsPropertystatic final classAn implementation forCfnAnalysisTemplate.ColumnClassificationDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()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.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: '<'eitherIResolvableorCfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty>- See Also:
-
builder
-