Class: Aws::Glue::Types::StringColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::StringColumnStatisticsData
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines column statistics supported for character sequence data values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average_length ⇒ Float
The average string length in the column.
-
#maximum_length ⇒ Integer
The size of the longest string 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
#average_length ⇒ Float
The average string length in the column.
22489 22490 22491 22492 22493 22494 22495 22496 |
# File 'lib/aws-sdk-glue/types.rb', line 22489 class StringColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#maximum_length ⇒ Integer
The size of the longest string in the column.
22489 22490 22491 22492 22493 22494 22495 22496 |
# File 'lib/aws-sdk-glue/types.rb', line 22489 class StringColumnStatisticsData < Struct.new( :maximum_length, :average_length, :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.
22489 22490 22491 22492 22493 22494 22495 22496 |
# File 'lib/aws-sdk-glue/types.rb', line 22489 class StringColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |
#number_of_nulls ⇒ Integer
The number of null values in the column.
22489 22490 22491 22492 22493 22494 22495 22496 |
# File 'lib/aws-sdk-glue/types.rb', line 22489 class StringColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |