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 WorkflowExecutionContinuedAsNewEventAttributes = WorkflowExecutionContinuedAsNewEventAttributes' {
- tagList :: Maybe [Text]
- taskStartToCloseTimeout :: Maybe Text
- lambdaRole :: Maybe Text
- input :: Maybe Text
- executionStartToCloseTimeout :: Maybe Text
- taskPriority :: Maybe Text
- decisionTaskCompletedEventId :: Integer
- newExecutionRunId' :: Text
- taskList :: TaskList
- childPolicy :: ChildPolicy
- workflowType :: WorkflowType
- newWorkflowExecutionContinuedAsNewEventAttributes :: Integer -> Text -> TaskList -> ChildPolicy -> WorkflowType -> WorkflowExecutionContinuedAsNewEventAttributes
- workflowExecutionContinuedAsNewEventAttributes_tagList :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe [Text])
- workflowExecutionContinuedAsNewEventAttributes_taskStartToCloseTimeout :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text)
- workflowExecutionContinuedAsNewEventAttributes_lambdaRole :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text)
- workflowExecutionContinuedAsNewEventAttributes_input :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text)
- workflowExecutionContinuedAsNewEventAttributes_executionStartToCloseTimeout :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text)
- workflowExecutionContinuedAsNewEventAttributes_taskPriority :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text)
- workflowExecutionContinuedAsNewEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionContinuedAsNewEventAttributes Integer
- workflowExecutionContinuedAsNewEventAttributes_newExecutionRunId :: Lens' WorkflowExecutionContinuedAsNewEventAttributes Text
- workflowExecutionContinuedAsNewEventAttributes_taskList :: Lens' WorkflowExecutionContinuedAsNewEventAttributes TaskList
- workflowExecutionContinuedAsNewEventAttributes_childPolicy :: Lens' WorkflowExecutionContinuedAsNewEventAttributes ChildPolicy
- workflowExecutionContinuedAsNewEventAttributes_workflowType :: Lens' WorkflowExecutionContinuedAsNewEventAttributes WorkflowType
Documentation
data WorkflowExecutionContinuedAsNewEventAttributes Source #
Provides the details of the WorkflowExecutionContinuedAsNew
event.
See: newWorkflowExecutionContinuedAsNewEventAttributes
smart constructor.
WorkflowExecutionContinuedAsNewEventAttributes' | |
|
Instances
newWorkflowExecutionContinuedAsNewEventAttributes Source #
Create a value of WorkflowExecutionContinuedAsNewEventAttributes
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:tagList:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_tagList
- The list of tags associated with the new workflow execution.
$sel:taskStartToCloseTimeout:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_taskStartToCloseTimeout
- The maximum duration of decision tasks for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal
to 0
. You can use NONE
to specify unlimited duration.
$sel:lambdaRole:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_lambdaRole
- The IAM role to attach to the new (continued) workflow execution.
$sel:input:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_input
- The input provided to the new workflow execution.
$sel:executionStartToCloseTimeout:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_executionStartToCloseTimeout
- The total duration allowed for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal
to 0
. You can use NONE
to specify unlimited duration.
$sel:taskPriority:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_taskPriority
- The priority of the task to use for the decisions of the new (continued)
workflow execution.
$sel:decisionTaskCompletedEventId:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_decisionTaskCompletedEventId
- The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the ContinueAsNewWorkflowExecution
decision that started this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
$sel:newExecutionRunId':WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_newExecutionRunId
- The runId
of the new workflow execution.
$sel:taskList:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_taskList
- The task list to use for the decisions of the new (continued) workflow
execution.
$sel:childPolicy:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_childPolicy
- The policy to use for the child workflow executions of the new execution
if it is terminated by calling the TerminateWorkflowExecution action
explicitly or due to an expired timeout.
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.
$sel:workflowType:WorkflowExecutionContinuedAsNewEventAttributes'
, workflowExecutionContinuedAsNewEventAttributes_workflowType
- The workflow type of this execution.
workflowExecutionContinuedAsNewEventAttributes_tagList :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe [Text]) Source #
The list of tags associated with the new workflow execution.
workflowExecutionContinuedAsNewEventAttributes_taskStartToCloseTimeout :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text) Source #
The maximum duration of decision tasks for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal
to 0
. You can use NONE
to specify unlimited duration.
workflowExecutionContinuedAsNewEventAttributes_lambdaRole :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text) Source #
The IAM role to attach to the new (continued) workflow execution.
workflowExecutionContinuedAsNewEventAttributes_input :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text) Source #
The input provided to the new workflow execution.
workflowExecutionContinuedAsNewEventAttributes_executionStartToCloseTimeout :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text) Source #
The total duration allowed for the new workflow execution.
The duration is specified in seconds, an integer greater than or equal
to 0
. You can use NONE
to specify unlimited duration.
workflowExecutionContinuedAsNewEventAttributes_taskPriority :: Lens' WorkflowExecutionContinuedAsNewEventAttributes (Maybe Text) Source #
The priority of the task to use for the decisions of the new (continued) workflow execution.
workflowExecutionContinuedAsNewEventAttributes_decisionTaskCompletedEventId :: Lens' WorkflowExecutionContinuedAsNewEventAttributes Integer Source #
The ID of the DecisionTaskCompleted
event corresponding to the
decision task that resulted in the ContinueAsNewWorkflowExecution
decision that started this execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
workflowExecutionContinuedAsNewEventAttributes_newExecutionRunId :: Lens' WorkflowExecutionContinuedAsNewEventAttributes Text Source #
The runId
of the new workflow execution.
workflowExecutionContinuedAsNewEventAttributes_taskList :: Lens' WorkflowExecutionContinuedAsNewEventAttributes TaskList Source #
The task list to use for the decisions of the new (continued) workflow execution.
workflowExecutionContinuedAsNewEventAttributes_childPolicy :: Lens' WorkflowExecutionContinuedAsNewEventAttributes ChildPolicy Source #
The policy to use for the child workflow executions of the new execution if it is terminated by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.
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.
workflowExecutionContinuedAsNewEventAttributes_workflowType :: Lens' WorkflowExecutionContinuedAsNewEventAttributes WorkflowType Source #
The workflow type of this execution.