Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data WorkflowExecutionTimedOutEventAttributes = WorkflowExecutionTimedOutEventAttributes' {}
- newWorkflowExecutionTimedOutEventAttributes :: WorkflowExecutionTimeoutType -> ChildPolicy -> WorkflowExecutionTimedOutEventAttributes
- workflowExecutionTimedOutEventAttributes_timeoutType :: Lens' WorkflowExecutionTimedOutEventAttributes WorkflowExecutionTimeoutType
- workflowExecutionTimedOutEventAttributes_childPolicy :: Lens' WorkflowExecutionTimedOutEventAttributes ChildPolicy
Documentation
data WorkflowExecutionTimedOutEventAttributes Source #
Provides the details of the WorkflowExecutionTimedOut
event.
See: newWorkflowExecutionTimedOutEventAttributes
smart constructor.
WorkflowExecutionTimedOutEventAttributes' | |
|
Instances
newWorkflowExecutionTimedOutEventAttributes Source #
Create a value of WorkflowExecutionTimedOutEventAttributes
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:timeoutType:WorkflowExecutionTimedOutEventAttributes'
, workflowExecutionTimedOutEventAttributes_timeoutType
- The type of timeout that caused this event.
$sel:childPolicy:WorkflowExecutionTimedOutEventAttributes'
, workflowExecutionTimedOutEventAttributes_childPolicy
- 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.
workflowExecutionTimedOutEventAttributes_timeoutType :: Lens' WorkflowExecutionTimedOutEventAttributes WorkflowExecutionTimeoutType Source #
The type of timeout that caused this event.
workflowExecutionTimedOutEventAttributes_childPolicy :: Lens' WorkflowExecutionTimedOutEventAttributes ChildPolicy Source #
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.