Class: Aws::SWF::Types::WorkflowExecutionTimedOutEventAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionTimedOutEventAttributes
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Provides the details of the WorkflowExecutionTimedOut
event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#child_policy ⇒ String
The policy used for the child workflow executions of this workflow execution.
-
#timeout_type ⇒ String
The type of timeout that caused this event.
Instance Attribute Details
#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.
6400 6401 6402 6403 6404 6405 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6400 class WorkflowExecutionTimedOutEventAttributes < Struct.new( :timeout_type, :child_policy) SENSITIVE = [] include Aws::Structure end |
#timeout_type ⇒ String
The type of timeout that caused this event.
6400 6401 6402 6403 6404 6405 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6400 class WorkflowExecutionTimedOutEventAttributes < Struct.new( :timeout_type, :child_policy) SENSITIVE = [] include Aws::Structure end |