Class: Aws::IoT::Types::TimestreamDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TimestreamDimension
- Includes:
- Structure
- Defined in:
- 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.
15824 15825 15826 15827 15828 15829 |
# File 'lib/aws-sdk-iot/types.rb', line 15824 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value to write in this column of the database record.
15824 15825 15826 15827 15828 15829 |
# File 'lib/aws-sdk-iot/types.rb', line 15824 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |