Class: Aws::IoT::Types::TimestreamDimension

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

Overview

Metadata attributes of the time series that are written in each measure record.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.

Dimensions cannot be named: measure_name, measure_value, or time. These names are reserved. Dimension names cannot start with ts_ or measure_value and they cannot contain the colon (:) character.

Returns:

  • (String)


15144
15145
15146
15147
15148
15149
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15144

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

#valueString

The value to write in this column of the database record.

Returns:

  • (String)


15144
15145
15146
15147
15148
15149
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 15144

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