Class: Aws::IoTAnalytics::Types::Column
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::Column
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Contains information about a column that stores your data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the column.
-
#type ⇒ String
The type of data.
Instance Attribute Details
#name ⇒ String
The name of the column.
344 345 346 347 348 349 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 344 class Column < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of data. For more information about the supported data types, see Common data types in the Glue Developer Guide.
344 345 346 347 348 349 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 344 class Column < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |