Class: Aws::IoTSiteWise::Types::ColumnInformation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the column.

Returns:

  • (String)


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

#typeString

The data type of the column. Valid values are STRING, DOUBLE, BOOLEAN, INTEGER, TIMESTAMP, and VARIANT.

Returns:

  • (String)


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