Class: Aws::Glue::Types::ColumnStatistics
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ColumnStatistics
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Represents the generated column-level statistics for a table or partition.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #analyzed_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp of when column statistics were generated. 
- 
  
    
      #column_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of column which statistics belong to. 
- 
  
    
      #column_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data type of the column. 
- 
  
    
      #statistics_data  ⇒ Types::ColumnStatisticsData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A ‘ColumnStatisticData` object that contains the statistics data values. 
Instance Attribute Details
#analyzed_time ⇒ Time
The timestamp of when column statistics were generated.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'lib/aws-sdk-glue/types.rb', line 3105 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end | 
#column_name ⇒ String
Name of column which statistics belong to.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'lib/aws-sdk-glue/types.rb', line 3105 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end | 
#column_type ⇒ String
The data type of the column.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'lib/aws-sdk-glue/types.rb', line 3105 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end | 
#statistics_data ⇒ Types::ColumnStatisticsData
A ‘ColumnStatisticData` object that contains the statistics data values.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'lib/aws-sdk-glue/types.rb', line 3105 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end |