Class: Aws::IoT::Types::TimestreamDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TimestreamDimension
- 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
-
#name ⇒ String
The metadata dimension name.
-
#value ⇒ String
The value to write in this column of the database record.
Instance Attribute Details
#name ⇒ String
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.
16566 16567 16568 16569 16570 16571 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16566 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value to write in this column of the database record.
16566 16567 16568 16569 16570 16571 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16566 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |