Class: Aws::FinSpaceData::Types::ColumnDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::FinSpaceData::Types::ColumnDefinition
- Defined in:
- gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb
Overview
The definition of a column in a tabular Dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_description ⇒ String
Description for a column.
-
#column_name ⇒ String
The name of a column.
-
#data_type ⇒ String
Data type of a column.
Instance Attribute Details
#column_description ⇒ String
Description for a column.
275 276 277 278 279 280 281 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 275 class ColumnDefinition < Struct.new( :data_type, :column_name, :column_description) SENSITIVE = [] include Aws::Structure end |
#column_name ⇒ String
The name of a column.
275 276 277 278 279 280 281 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 275 class ColumnDefinition < Struct.new( :data_type, :column_name, :column_description) SENSITIVE = [] include Aws::Structure end |
#data_type ⇒ String
Data type of a column.
STRING
– A String data type.CHAR
– A char data type.INTEGER
– An integer data type.TINYINT
– A tinyint data type.SMALLINT
– A smallint data type.BIGINT
– A bigint data type.FLOAT
– A float data type.DOUBLE
– A double data type.DATE
– A date data type.DATETIME
– A datetime data type.BOOLEAN
– A boolean data type.BINARY
– A binary data type.
275 276 277 278 279 280 281 |
# File 'gems/aws-sdk-finspacedata/lib/aws-sdk-finspacedata/types.rb', line 275 class ColumnDefinition < Struct.new( :data_type, :column_name, :column_description) SENSITIVE = [] include Aws::Structure end |