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.
      15144 15145 15146 15147 15148 15149  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15144 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The value to write in this column of the database record.
      15144 15145 15146 15147 15148 15149  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15144 class TimestreamDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  |