Class: Aws::IoTThingsGraph::Types::FlowExecutionMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTThingsGraph::Types::FlowExecutionMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotthingsgraph/types.rb
 
Overview
An object that contains information about a flow event.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #event_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of flow event .
 - 
  
    
      #message_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the message.
 - 
  
    
      #payload  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string containing information about the flow event.
 - 
  
    
      #timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the message was last updated.
 
Instance Attribute Details
#event_type ⇒ String
The type of flow event .
      454 455 456 457 458 459 460 461  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 454 class FlowExecutionMessage < Struct.new( :message_id, :event_type, :timestamp, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#message_id ⇒ String
The unique identifier of the message.
      454 455 456 457 458 459 460 461  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 454 class FlowExecutionMessage < Struct.new( :message_id, :event_type, :timestamp, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#payload ⇒ String
A string containing information about the flow event.
      454 455 456 457 458 459 460 461  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 454 class FlowExecutionMessage < Struct.new( :message_id, :event_type, :timestamp, :payload) SENSITIVE = [] include Aws::Structure end  | 
  
#timestamp ⇒ Time
The date and time when the message was last updated.
      454 455 456 457 458 459 460 461  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 454 class FlowExecutionMessage < Struct.new( :message_id, :event_type, :timestamp, :payload) SENSITIVE = [] include Aws::Structure end  |