Class: Aws::Glue::Types::LongColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::LongColumnStatisticsData
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass LongColumnStatisticsData data as a hash:
{
minimum_value: 1,
maximum_value: 1,
number_of_nulls: 1, # required
number_of_distinct_values: 1, # required
}
Defines column statistics supported for integer data columns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_value ⇒ Integer
The highest value in the column.
-
#minimum_value ⇒ Integer
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 ⇒ Integer
The highest value in the column.
17168 17169 17170 17171 17172 17173 17174 17175 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17168 class LongColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#minimum_value ⇒ Integer
The lowest value in the column.
17168 17169 17170 17171 17172 17173 17174 17175 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17168 class LongColumnStatisticsData < 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.
17168 17169 17170 17171 17172 17173 17174 17175 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17168 class LongColumnStatisticsData < 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.
17168 17169 17170 17171 17172 17173 17174 17175 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17168 class LongColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |