Class: Aws::IoT::Types::TimestreamTimestamp
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::TimestreamTimestamp
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes how to interpret an application-defined timestamp value from an MQTT message payload and the precision of that value.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The precision of the timestamp value that results from the expression described in ‘value`.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An expression that returns a long epoch time value.
 
Instance Attribute Details
#unit ⇒ String
The precision of the timestamp value that results from the expression described in ‘value`.
Valid values: ‘SECONDS` | `MILLISECONDS` | `MICROSECONDS` | `NANOSECONDS`. The default is `MILLISECONDS`.
      15166 15167 15168 15169 15170 15171  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15166 class TimestreamTimestamp < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
An expression that returns a long epoch time value.
      15166 15167 15168 15169 15170 15171  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15166 class TimestreamTimestamp < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end  |