Class: Aws::Athena::Types::Column
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::Column
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Contains metadata for a column in a table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
Optional information about the column.
-
#name ⇒ String
The name of the column.
-
#type ⇒ String
The data type of the column.
Instance Attribute Details
#comment ⇒ String
Optional information about the column.
503 504 505 506 507 508 509 |
# File 'lib/aws-sdk-athena/types.rb', line 503 class Column < Struct.new( :name, :type, :comment) SENSITIVE = [] include Aws::Structure end |