Class: Aws::Glue::Types::DoubleColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DoubleColumnStatisticsData
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Defines column statistics supported for floating-point number data columns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_value ⇒ Float
The highest value in the column.
-
#minimum_value ⇒ Float
The lowest value in the column.
-
#number_of_distinct_values ⇒ Integer
The number of distinct values in a column.
-
#number_of_nulls ⇒ Integer
The number of null values in the column.
Instance Attribute Details
#maximum_value ⇒ Float
The highest value in the column.
7516 7517 7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7516 class DoubleColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#minimum_value ⇒ Float
The lowest value in the column.
7516 7517 7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7516 class DoubleColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#number_of_distinct_values ⇒ Integer
The number of distinct values in a column.
7516 7517 7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7516 class DoubleColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#number_of_nulls ⇒ Integer
The number of null values in the column.
7516 7517 7518 7519 7520 7521 7522 7523 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7516 class DoubleColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |