Class: Aws::Glue::Types::DateColumnStatisticsData
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::DateColumnStatisticsData
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines column statistics supported for timestamp data columns.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #maximum_value  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The highest value in the column. 
- 
  
    
      #minimum_value  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    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 ⇒ Time
The highest value in the column.
| 8287 8288 8289 8290 8291 8292 8293 8294 | # File 'lib/aws-sdk-glue/types.rb', line 8287 class DateColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end | 
#minimum_value ⇒ Time
The lowest value in the column.
| 8287 8288 8289 8290 8291 8292 8293 8294 | # File 'lib/aws-sdk-glue/types.rb', line 8287 class DateColumnStatisticsData < 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.
| 8287 8288 8289 8290 8291 8292 8293 8294 | # File 'lib/aws-sdk-glue/types.rb', line 8287 class DateColumnStatisticsData < 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.
| 8287 8288 8289 8290 8291 8292 8293 8294 | # File 'lib/aws-sdk-glue/types.rb', line 8287 class DateColumnStatisticsData < Struct.new( :minimum_value, :maximum_value, :number_of_nulls, :number_of_distinct_values) SENSITIVE = [] include Aws::Structure end |