Class: Aws::Glue::Types::ColumnImportance

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

A structure containing the column name and column importance score for a column.

Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of a column.

Returns:

  • (String)


3031
3032
3033
3034
3035
3036
# File 'lib/aws-sdk-glue/types.rb', line 3031

class ColumnImportance < Struct.new(
  :column_name,
  :importance)
  SENSITIVE = []
  include Aws::Structure
end

#importanceFloat

The column importance score for the column, as a decimal.

Returns:

  • (Float)


3031
3032
3033
3034
3035
3036
# File 'lib/aws-sdk-glue/types.rb', line 3031

class ColumnImportance < Struct.new(
  :column_name,
  :importance)
  SENSITIVE = []
  include Aws::Structure
end