Class: Aws::TimestreamQuery::Types::SelectColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::SelectColumn
- Defined in:
- gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
Overview
Details of the column that is returned by the query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aliased ⇒ Boolean
True, if the column name was aliased by the query.
-
#database_name ⇒ String
Database that has this column.
-
#name ⇒ String
Name of the column.
-
#table_name ⇒ String
Table within the database that has this column.
-
#type ⇒ Types::Type
Contains the data type of a column in a query result set.
Instance Attribute Details
#aliased ⇒ Boolean
True, if the column name was aliased by the query. False otherwise.
1709 1710 1711 1712 1713 1714 1715 1716 1717 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1709 class SelectColumn < Struct.new( :name, :type, :database_name, :table_name, :aliased) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
Database that has this column.
1709 1710 1711 1712 1713 1714 1715 1716 1717 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1709 class SelectColumn < Struct.new( :name, :type, :database_name, :table_name, :aliased) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the column.
1709 1710 1711 1712 1713 1714 1715 1716 1717 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1709 class SelectColumn < Struct.new( :name, :type, :database_name, :table_name, :aliased) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
Table within the database that has this column.
1709 1710 1711 1712 1713 1714 1715 1716 1717 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1709 class SelectColumn < Struct.new( :name, :type, :database_name, :table_name, :aliased) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Types::Type
Contains the data type of a column in a query result set. The data type can be scalar or complex. The supported scalar data types are integers, Boolean, string, double, timestamp, date, time, and intervals. The supported complex data types are arrays, rows, and timeseries.
1709 1710 1711 1712 1713 1714 1715 1716 1717 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1709 class SelectColumn < Struct.new( :name, :type, :database_name, :table_name, :aliased) SENSITIVE = [] include Aws::Structure end |