Class: Aws::SWF::Types::ExternalWorkflowExecutionSignaledEventAttributes
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SWF::Types::ExternalWorkflowExecutionSignaledEventAttributes
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-swf/types.rb
 
Overview
Provides the details of the ‘ExternalWorkflowExecutionSignaled` event.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #initiated_event_id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the ‘SignalExternalWorkflowExecutionInitiated` event corresponding to the `SignalExternalWorkflowExecution` decision to request this signal.
 - 
  
    
      #workflow_execution  ⇒ Types::WorkflowExecution 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The external workflow execution that the signal was delivered to.
 
Instance Attribute Details
#initiated_event_id ⇒ Integer
The ID of the ‘SignalExternalWorkflowExecutionInitiated` event corresponding to the `SignalExternalWorkflowExecution` decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
      2101 2102 2103 2104 2105 2106  | 
    
      # File 'lib/aws-sdk-swf/types.rb', line 2101 class ExternalWorkflowExecutionSignaledEventAttributes < Struct.new( :workflow_execution, :initiated_event_id) SENSITIVE = [] include Aws::Structure end  | 
  
#workflow_execution ⇒ Types::WorkflowExecution
The external workflow execution that the signal was delivered to.
      2101 2102 2103 2104 2105 2106  | 
    
      # File 'lib/aws-sdk-swf/types.rb', line 2101 class ExternalWorkflowExecutionSignaledEventAttributes < Struct.new( :workflow_execution, :initiated_event_id) SENSITIVE = [] include Aws::Structure end  |