Class: Aws::SWF::Types::WorkflowExecutionCancelRequestedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionCancelRequestedEventAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Provides the details of the ‘WorkflowExecutionCancelRequested` event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cause ⇒ String
If set, indicates that the request to cancel the workflow execution was automatically generated, and specifies the cause.
-
#external_initiated_event_id ⇒ Integer
The ID of the ‘RequestCancelExternalWorkflowExecutionInitiated` event corresponding to the `RequestCancelExternalWorkflowExecution` decision to cancel this workflow execution.The source event with this ID can be found in the history of the source workflow execution.
-
#external_workflow_execution ⇒ Types::WorkflowExecution
The external workflow execution for which the cancellation was requested.
Instance Attribute Details
#cause ⇒ String
If set, indicates that the request to cancel the workflow execution was automatically generated, and specifies the cause. This happens if the parent workflow execution times out or is terminated, and the child policy is set to cancel child executions.
5753 5754 5755 5756 5757 5758 5759 |
# File 'lib/aws-sdk-swf/types.rb', line 5753 class WorkflowExecutionCancelRequestedEventAttributes < Struct.new( :external_workflow_execution, :external_initiated_event_id, :cause) SENSITIVE = [] include Aws::Structure end |
#external_initiated_event_id ⇒ Integer
The ID of the ‘RequestCancelExternalWorkflowExecutionInitiated` event corresponding to the `RequestCancelExternalWorkflowExecution` decision to cancel this workflow execution.The source event with this ID can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
5753 5754 5755 5756 5757 5758 5759 |
# File 'lib/aws-sdk-swf/types.rb', line 5753 class WorkflowExecutionCancelRequestedEventAttributes < Struct.new( :external_workflow_execution, :external_initiated_event_id, :cause) SENSITIVE = [] include Aws::Structure end |
#external_workflow_execution ⇒ Types::WorkflowExecution
The external workflow execution for which the cancellation was requested.
5753 5754 5755 5756 5757 5758 5759 |
# File 'lib/aws-sdk-swf/types.rb', line 5753 class WorkflowExecutionCancelRequestedEventAttributes < Struct.new( :external_workflow_execution, :external_initiated_event_id, :cause) SENSITIVE = [] include Aws::Structure end |