Class: Aws::CleanRooms::Types::SyntheticDataColumnProperties

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cleanrooms/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)


9325
9326
9327
9328
9329
9330
9331
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9325

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)


9325
9326
9327
9328
9329
9330
9331
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9325

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)


9325
9326
9327
9328
9329
9330
9331
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9325

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