Interface CfnAnalysisTemplatePropsMixin.SyntheticDataColumnPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisTemplatePropsMixin.SyntheticDataColumnPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisTemplatePropsMixin
@Stability(Stable)
public static interface CfnAnalysisTemplatePropsMixin.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.cfnpropertymixins.services.cleanrooms.*;
SyntheticDataColumnPropertiesProperty syntheticDataColumnPropertiesProperty = SyntheticDataColumnPropertiesProperty.builder()
.columnName("columnName")
.columnType("columnType")
.isPredictiveValue(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplatePropsMixin.SyntheticDataColumnPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the data column as it appears in the dataset.default StringThe data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.default ObjectIndicates if this column contains predictive values that should be treated as target variables in machine learning models.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The name of the data column as it appears in the dataset.- See Also:
-
getColumnType
The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.- See Also:
-
getIsPredictiveValue
Indicates if this column contains predictive values that should be treated as target variables in machine learning models.This affects how the synthetic data generation preserves statistical relationships.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnAnalysisTemplatePropsMixin.SyntheticDataColumnPropertiesProperty.Builder builder()
-