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.
| 24892 24893 24894 24895 24896 24897 24898 24899 | # File 'lib/aws-sdk-glue/types.rb', line 24892 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.
| 24892 24893 24894 24895 24896 24897 24898 24899 | # File 'lib/aws-sdk-glue/types.rb', line 24892 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.
| 24892 24893 24894 24895 24896 24897 24898 24899 | # File 'lib/aws-sdk-glue/types.rb', line 24892 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.
| 24892 24893 24894 24895 24896 24897 24898 24899 | # File 'lib/aws-sdk-glue/types.rb', line 24892 class StringColumnStatisticsData < Struct.new( :maximum_length, :average_length, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |