Class: Aws::Glue::Types::BinaryColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::BinaryColumnStatisticsData
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass BinaryColumnStatisticsData data as a hash:
{
maximum_length: 1, # required
average_length: 1.0, # required
number_of_nulls: 1, # required
}
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.
1432 1433 1434 1435 1436 1437 1438 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1432 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.
1432 1433 1434 1435 1436 1437 1438 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1432 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.
1432 1433 1434 1435 1436 1437 1438 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1432 class BinaryColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls) SENSITIVE = [] include Aws::Structure end |