Class: Aws::Glue::Types::ColumnStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ColumnStatistics
- Defined in:
- gems/aws-sdk-glue/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
ColumnStatisticDataobject that contains the statistics data values.
Instance Attribute Details
#analyzed_time ⇒ Time
The timestamp of when column statistics were generated.
3322 3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3322 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.
3322 3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3322 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.
3322 3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3322 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.
3322 3323 3324 3325 3326 3327 3328 3329 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3322 class ColumnStatistics < Struct.new( :column_name, :column_type, :analyzed_time, :statistics_data) SENSITIVE = [] include Aws::Structure end |