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.
2773 2774 2775 2776 2777 2778 2779 2780 |
# File 'lib/aws-sdk-glue/types.rb', line 2773 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.
2773 2774 2775 2776 2777 2778 2779 2780 |
# File 'lib/aws-sdk-glue/types.rb', line 2773 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.
2773 2774 2775 2776 2777 2778 2779 2780 |
# File 'lib/aws-sdk-glue/types.rb', line 2773 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.
2773 2774 2775 2776 2777 2778 2779 2780 |
# File 'lib/aws-sdk-glue/types.rb', line 2773 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end |