Class: Aws::Glue::Types::BinaryColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::BinaryColumnStatisticsData
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines column statistics supported for bit sequence data values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average_length ⇒ Float
The average bit sequence length in the column.
-
#maximum_length ⇒ Integer
The size of the longest bit sequence in the column.
-
#number_of_nulls ⇒ Integer
The number of null values in the column.
Instance Attribute Details
#average_length ⇒ Float
The average bit sequence length in the column.
1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/aws-sdk-glue/types.rb', line 1499 class BinaryColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls) SENSITIVE = [] include Aws::Structure end |
#maximum_length ⇒ Integer
The size of the longest bit sequence in the column.
1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/aws-sdk-glue/types.rb', line 1499 class BinaryColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls) SENSITIVE = [] include Aws::Structure end |
#number_of_nulls ⇒ Integer
The number of null values in the column.
1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/aws-sdk-glue/types.rb', line 1499 class BinaryColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls) SENSITIVE = [] include Aws::Structure end |