Interface CfnAnalysisTemplate.MLSyntheticDataParametersProperty

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

@Stability(Stable) public static interface CfnAnalysisTemplate.MLSyntheticDataParametersProperty extends software.amazon.jsii.JsiiSerializable
Parameters that control the generation of synthetic data for machine learning, including privacy settings and column classification details.

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.*;
 MLSyntheticDataParametersProperty mLSyntheticDataParametersProperty = MLSyntheticDataParametersProperty.builder()
         .columnClassification(ColumnClassificationDetailsProperty.builder()
                 .columnMapping(List.of(SyntheticDataColumnPropertiesProperty.builder()
                         .columnName("columnName")
                         .columnType("columnType")
                         .isPredictiveValue(false)
                         .build()))
                 .build())
         .epsilon(123)
         .maxMembershipInferenceAttackScore(123)
         .build();
 

See Also: