Interface CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnAnalysisTemplate

@Stability(Stable) public static interface CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cleanrooms.*;
 SyntheticDataColumnPropertiesProperty syntheticDataColumnPropertiesProperty = SyntheticDataColumnPropertiesProperty.builder()
         .columnName("columnName")
         .columnType("columnType")
         .isPredictiveValue(false)
         .build();
 

See Also: