Class: Aws::SWF::Types::ChildWorkflowExecutionStartedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ChildWorkflowExecutionStartedEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘ChildWorkflowExecutionStarted` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#initiated_event_id ⇒ Integer
The ID of the ‘StartChildWorkflowExecutionInitiated` event corresponding to the `StartChildWorkflowExecution` Decision to start this child workflow execution.
-
#workflow_execution ⇒ Types::WorkflowExecution
The child workflow execution that was started.
-
#workflow_type ⇒ Types::WorkflowType
The type of the child workflow execution.
Instance Attribute Details
#initiated_event_id ⇒ Integer
The ID of the ‘StartChildWorkflowExecutionInitiated` event corresponding to the `StartChildWorkflowExecution` Decision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
804 805 806 807 808 809 810 |
# File 'lib/aws-sdk-swf/types.rb', line 804 class ChildWorkflowExecutionStartedEventAttributes < Struct.new( :workflow_execution, :workflow_type, :initiated_event_id) SENSITIVE = [] include Aws::Structure end |
#workflow_execution ⇒ Types::WorkflowExecution
The child workflow execution that was started.
804 805 806 807 808 809 810 |
# File 'lib/aws-sdk-swf/types.rb', line 804 class ChildWorkflowExecutionStartedEventAttributes < Struct.new( :workflow_execution, :workflow_type, :initiated_event_id) SENSITIVE = [] include Aws::Structure end |
#workflow_type ⇒ Types::WorkflowType
The type of the child workflow execution.
804 805 806 807 808 809 810 |
# File 'lib/aws-sdk-swf/types.rb', line 804 class ChildWorkflowExecutionStartedEventAttributes < Struct.new( :workflow_execution, :workflow_type, :initiated_event_id) SENSITIVE = [] include Aws::Structure end |