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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the data column as it appears in the dataset.The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.Indicates 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 CfnAnalysisTemplate.SyntheticDataColumnPropertiesProperty.Builder builder()
-