Class: Aws::CleanRoomsML::Types::SyntheticDataColumnProperties

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb

Overview

Properties that define how a specific data column should be handled during synthetic data generation, including its name, type, and role in predictive modeling.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the data column as it appears in the dataset.

Returns:

  • (String)


5457
5458
5459
5460
5461
5462
5463
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5457

class SyntheticDataColumnProperties < Struct.new(
  :column_name,
  :column_type,
  :is_predictive_value)
  SENSITIVE = []
  include Aws::Structure
end

#column_typeString

The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.

Returns:

  • (String)


5457
5458
5459
5460
5461
5462
5463
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5457

class SyntheticDataColumnProperties < Struct.new(
  :column_name,
  :column_type,
  :is_predictive_value)
  SENSITIVE = []
  include Aws::Structure
end

#is_predictive_valueBoolean

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:

  • (Boolean)


5457
5458
5459
5460
5461
5462
5463
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5457

class SyntheticDataColumnProperties < Struct.new(
  :column_name,
  :column_type,
  :is_predictive_value)
  SENSITIVE = []
  include Aws::Structure
end