Class: Aws::TimestreamQuery::Types::ColumnInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb

Overview

Contains the metadata for query results such as the column names, data types, and other attributes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

Returns:

  • (String)


69
70
71
72
73
74
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 69

class ColumnInfo < Struct.new(
  :name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeTypes::Type

The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.

Returns:



69
70
71
72
73
74
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 69

class ColumnInfo < Struct.new(
  :name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end