Class: Aws::IoTSiteWise::Types::ColumnInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ColumnInformation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains metadata about a column in the query results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the column.
-
#type ⇒ String
The data type of the column.
Instance Attribute Details
#name ⇒ String
The name of the column.
2839 2840 2841 2842 2843 2844 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 2839 class ColumnInformation < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the column. Valid values are STRING, DOUBLE, BOOLEAN, INTEGER, TIMESTAMP, and VARIANT.
2839 2840 2841 2842 2843 2844 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 2839 class ColumnInformation < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |