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)


2725
2726
2727
2728
2729
2730
# File 'lib/aws-sdk-glue/types.rb', line 2725

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)


2725
2726
2727
2728
2729
2730
# File 'lib/aws-sdk-glue/types.rb', line 2725

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