Class: Aws::SWF::Types::WorkflowExecutionTerminatedEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionTerminatedEventAttributes
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the WorkflowExecutionTerminated
event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cause ⇒ String
If set, indicates that the workflow execution was automatically terminated, and specifies the cause.
-
#child_policy ⇒ String
The policy used for the child workflow executions of this workflow execution.
-
#details ⇒ String
The details provided for the termination.
-
#reason ⇒ String
The reason provided for the termination.
Instance Attribute Details
#cause ⇒ String
If set, indicates that the workflow execution was automatically terminated, and specifies the cause. This happens if the parent workflow execution times out or is terminated and the child policy is set to terminate child executions.
6285 6286 6287 6288 6289 6290 6291 6292 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6285 class WorkflowExecutionTerminatedEventAttributes < Struct.new( :reason, :details, :child_policy, :cause) SENSITIVE = [] include Aws::Structure end |
#child_policy ⇒ String
The policy used for the child workflow executions of this workflow execution.
The supported child policies are:
TERMINATE
– The child executions are terminated.REQUEST_CANCEL
– A request to cancel is attempted for each child execution by recording aWorkflowExecutionCancelRequested
event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.ABANDON
– No action is taken. The child executions continue to run.
6285 6286 6287 6288 6289 6290 6291 6292 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6285 class WorkflowExecutionTerminatedEventAttributes < Struct.new( :reason, :details, :child_policy, :cause) SENSITIVE = [] include Aws::Structure end |
#details ⇒ String
The details provided for the termination.
6285 6286 6287 6288 6289 6290 6291 6292 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6285 class WorkflowExecutionTerminatedEventAttributes < Struct.new( :reason, :details, :child_policy, :cause) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The reason provided for the termination.
6285 6286 6287 6288 6289 6290 6291 6292 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6285 class WorkflowExecutionTerminatedEventAttributes < Struct.new( :reason, :details, :child_policy, :cause) SENSITIVE = [] include Aws::Structure end |