Class: Aws::Glue::Types::SkewedInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SkewedInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies skewed values in a table. Skewed values are those that occur with very high frequency.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#skewed_column_names ⇒ Array<String>
A list of names of columns that contain skewed values.
-
#skewed_column_value_location_maps ⇒ Hash<String,String>
A mapping of skewed values to the columns that contain them.
-
#skewed_column_values ⇒ Array<String>
A list of values that appear so frequently as to be considered skewed.
Instance Attribute Details
#skewed_column_names ⇒ Array<String>
A list of names of columns that contain skewed values.
20798 20799 20800 20801 20802 20803 20804 |
# File 'lib/aws-sdk-glue/types.rb', line 20798 class SkewedInfo < Struct.new( :skewed_column_names, :skewed_column_values, :skewed_column_value_location_maps) SENSITIVE = [] include Aws::Structure end |
#skewed_column_value_location_maps ⇒ Hash<String,String>
A mapping of skewed values to the columns that contain them.
20798 20799 20800 20801 20802 20803 20804 |
# File 'lib/aws-sdk-glue/types.rb', line 20798 class SkewedInfo < Struct.new( :skewed_column_names, :skewed_column_values, :skewed_column_value_location_maps) SENSITIVE = [] include Aws::Structure end |
#skewed_column_values ⇒ Array<String>
A list of values that appear so frequently as to be considered skewed.
20798 20799 20800 20801 20802 20803 20804 |
# File 'lib/aws-sdk-glue/types.rb', line 20798 class SkewedInfo < Struct.new( :skewed_column_names, :skewed_column_values, :skewed_column_value_location_maps) SENSITIVE = [] include Aws::Structure end |