CopyableBuilder<WorkflowExecutionContinuedAsNewEventAttributes.Builder,WorkflowExecutionContinuedAsNewEventAttributes>
, SdkBuilder<WorkflowExecutionContinuedAsNewEventAttributes.Builder,WorkflowExecutionContinuedAsNewEventAttributes>
public static interface WorkflowExecutionContinuedAsNewEventAttributes.Builder extends CopyableBuilder<WorkflowExecutionContinuedAsNewEventAttributes.Builder,WorkflowExecutionContinuedAsNewEventAttributes>
Modifier and Type | Method | Description |
---|---|---|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
childPolicy(String 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.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
childPolicy(ChildPolicy 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.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
decisionTaskCompletedEventId(Long decisionTaskCompletedEventId) |
The ID of the
DecisionTaskCompleted event corresponding to the decision task that resulted in
the ContinueAsNewWorkflowExecution decision that started this execution. |
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
executionStartToCloseTimeout(String executionStartToCloseTimeout) |
The total duration allowed for the new workflow execution.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
input(String input) |
The input provided to the new workflow execution.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
lambdaRole(String lambdaRole) |
The IAM role attached to this workflow execution to use when invoking AWS Lambda functions.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
newExecutionRunId(String newExecutionRunId) |
The
runId of the new workflow execution. |
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
tagList(String... tagList) |
The list of tags associated with the new workflow execution.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
tagList(Collection<String> tagList) |
The list of tags associated with the new workflow execution.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
taskList(TaskList taskList) |
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
taskPriority(String taskPriority) |
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
taskStartToCloseTimeout(String taskStartToCloseTimeout) |
The maximum duration of decision tasks for the new workflow execution.
|
WorkflowExecutionContinuedAsNewEventAttributes.Builder |
workflowType(WorkflowType workflowType) |
copy
apply, build
WorkflowExecutionContinuedAsNewEventAttributes.Builder input(String input)
The input provided to the new workflow execution.
input
- The input provided to the new workflow execution.WorkflowExecutionContinuedAsNewEventAttributes.Builder decisionTaskCompletedEventId(Long 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.
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.WorkflowExecutionContinuedAsNewEventAttributes.Builder newExecutionRunId(String newExecutionRunId)
The runId
of the new workflow execution.
newExecutionRunId
- The runId
of the new workflow execution.WorkflowExecutionContinuedAsNewEventAttributes.Builder executionStartToCloseTimeout(String executionStartToCloseTimeout)
The total duration allowed for the new workflow execution.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
executionStartToCloseTimeout
- The total duration allowed for the new workflow execution.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
WorkflowExecutionContinuedAsNewEventAttributes.Builder taskList(TaskList taskList)
taskList
- WorkflowExecutionContinuedAsNewEventAttributes.Builder taskPriority(String taskPriority)
taskPriority
- WorkflowExecutionContinuedAsNewEventAttributes.Builder taskStartToCloseTimeout(String 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. The value "NONE" can be used to specify unlimited duration.
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. The value "NONE" can be used to specify unlimited duration.
WorkflowExecutionContinuedAsNewEventAttributes.Builder childPolicy(String 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:
WorkflowExecutionCancelRequested
event in its history. It is up to the decider to take
appropriate actions when it receives an execution history with this event.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:
WorkflowExecutionCancelRequested
event in its history. It is up to the decider to take
appropriate actions when it receives an execution history with this event.ChildPolicy
WorkflowExecutionContinuedAsNewEventAttributes.Builder childPolicy(ChildPolicy 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:
WorkflowExecutionCancelRequested
event in its history. It is up to the decider to take
appropriate actions when it receives an execution history with this event.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:
WorkflowExecutionCancelRequested
event in its history. It is up to the decider to take
appropriate actions when it receives an execution history with this event.ChildPolicy
WorkflowExecutionContinuedAsNewEventAttributes.Builder tagList(Collection<String> tagList)
The list of tags associated with the new workflow execution.
tagList
- The list of tags associated with the new workflow execution.WorkflowExecutionContinuedAsNewEventAttributes.Builder tagList(String... tagList)
The list of tags associated with the new workflow execution.
NOTE: This method appends the values to the existing list (if any). Use
#setTagList(java.util.Collection)
or #withTagList(java.util.Collection)
if you want to
override the existing values.
tagList
- The list of tags associated with the new workflow execution.WorkflowExecutionContinuedAsNewEventAttributes.Builder workflowType(WorkflowType workflowType)
workflowType
- WorkflowExecutionContinuedAsNewEventAttributes.Builder lambdaRole(String lambdaRole)
The IAM role attached to this workflow execution to use when invoking AWS Lambda functions.
lambdaRole
- The IAM role attached to this workflow execution to use when invoking AWS Lambda functions.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.