CopyableBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
, SdkBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
public static interface StartWorkflowExecutionRequest.Builder extends CopyableBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
Modifier and Type | Method | Description |
---|---|---|
StartWorkflowExecutionRequest.Builder |
childPolicy(String childPolicy) |
If set, specifies the policy to use for the child workflow executions of this workflow execution if it is
terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.
|
StartWorkflowExecutionRequest.Builder |
childPolicy(ChildPolicy childPolicy) |
If set, specifies the policy to use for the child workflow executions of this workflow execution if it is
terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.
|
StartWorkflowExecutionRequest.Builder |
domain(String domain) |
The name of the domain in which the workflow execution is created.
|
StartWorkflowExecutionRequest.Builder |
executionStartToCloseTimeout(String executionStartToCloseTimeout) |
The total duration for this workflow execution.
|
StartWorkflowExecutionRequest.Builder |
input(String input) |
The input for the workflow execution.
|
StartWorkflowExecutionRequest.Builder |
lambdaRole(String lambdaRole) |
The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda functions.
|
StartWorkflowExecutionRequest.Builder |
tagList(String... tagList) |
The list of tags to associate with the workflow execution.
|
StartWorkflowExecutionRequest.Builder |
tagList(Collection<String> tagList) |
The list of tags to associate with the workflow execution.
|
StartWorkflowExecutionRequest.Builder |
taskList(TaskList taskList) |
The task list to use for the decision tasks generated for this workflow execution.
|
StartWorkflowExecutionRequest.Builder |
taskPriority(String taskPriority) |
The task priority to use for this workflow execution.
|
StartWorkflowExecutionRequest.Builder |
taskStartToCloseTimeout(String taskStartToCloseTimeout) |
Specifies the maximum duration of decision tasks for this workflow execution.
|
StartWorkflowExecutionRequest.Builder |
workflowId(String workflowId) |
The user defined identifier associated with the workflow execution.
|
StartWorkflowExecutionRequest.Builder |
workflowType(WorkflowType workflowType) |
The type of the workflow to start.
|
copy
apply, build
StartWorkflowExecutionRequest.Builder domain(String domain)
The name of the domain in which the workflow execution is created.
domain
- The name of the domain in which the workflow execution is created.StartWorkflowExecutionRequest.Builder workflowId(String workflowId)
The user defined identifier associated with the workflow execution. You can use this to associate a custom
identifier with the workflow execution. You may specify the same identifier if a workflow execution is
logically a restart of a previous execution. You cannot have two open workflow executions with the
same workflowId
at the same time.
The specified string must not start or end with whitespace. It must not contain a :
(colon),
/
(slash), |
(vertical bar), or any control characters ( - | -
). Also, it must not contain the literal string quotarnquot.
workflowId
- The user defined identifier associated with the workflow execution. You can use this to associate a
custom identifier with the workflow execution. You may specify the same identifier if a workflow
execution is logically a restart of a previous execution. You cannot have two open workflow
executions with the same workflowId
at the same time.
The specified string must not start or end with whitespace. It must not contain a :
(colon), /
(slash), |
(vertical bar), or any control characters
( - | - ). Also, it must not contain the literal string quotarnquot.
StartWorkflowExecutionRequest.Builder workflowType(WorkflowType workflowType)
The type of the workflow to start.
workflowType
- The type of the workflow to start.StartWorkflowExecutionRequest.Builder taskList(TaskList taskList)
The task list to use for the decision tasks generated for this workflow execution. This overrides the
defaultTaskList
specified when registering the workflow type.
The specified string must not start or end with whitespace. It must not contain a :
(colon),
/
(slash), |
(vertical bar), or any control characters ( - | -
). Also, it must not contain the literal string quotarnquot.
taskList
- The task list to use for the decision tasks generated for this workflow execution. This overrides the
defaultTaskList
specified when registering the workflow type.
The specified string must not start or end with whitespace. It must not contain a :
(colon), /
(slash), |
(vertical bar), or any control characters
( - | - ). Also, it must not contain the literal string quotarnquot.
StartWorkflowExecutionRequest.Builder taskPriority(String taskPriority)
The task priority to use for this workflow execution. This will override any default priority that was
assigned when the workflow type was registered. If not set, then the default task priority for the workflow
type will be used. Valid values are integers that range from Java's Integer.MIN_VALUE
(-2147483648) to Integer.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.
For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.
taskPriority
- The task priority to use for this workflow execution. This will override any default priority that was
assigned when the workflow type was registered. If not set, then the default task priority for the
workflow type will be used. Valid values are integers that range from Java's
Integer.MIN_VALUE
(-2147483648) to Integer.MAX_VALUE
(2147483647). Higher
numbers indicate higher priority.
For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.
StartWorkflowExecutionRequest.Builder input(String input)
The input for the workflow execution. This is a free form string which should be meaningful to the workflow
you are starting. This input
is made available to the new workflow execution in the
WorkflowExecutionStarted
history event.
input
- The input for the workflow execution. This is a free form string which should be meaningful to the
workflow you are starting. This input
is made available to the new workflow execution in
the WorkflowExecutionStarted
history event.StartWorkflowExecutionRequest.Builder executionStartToCloseTimeout(String executionStartToCloseTimeout)
The total duration for this workflow execution. This overrides the defaultExecutionStartToCloseTimeout specified when registering the workflow type.
The duration is specified in seconds; an integer greater than or equal to 0. Exceeding this limit will cause the workflow execution to time out. Unlike some of the other timeout parameters in Amazon SWF, you cannot specify a value of "NONE" for this timeout; there is a one-year max limit on the time that a workflow execution can run.
executionStartToCloseTimeout
- The total duration for this workflow execution. This overrides the defaultExecutionStartToCloseTimeout
specified when registering the workflow type.
The duration is specified in seconds; an integer greater than or equal to 0. Exceeding this limit will cause the workflow execution to time out. Unlike some of the other timeout parameters in Amazon SWF, you cannot specify a value of "NONE" for this timeout; there is a one-year max limit on the time that a workflow execution can run.
StartWorkflowExecutionRequest.Builder tagList(Collection<String> tagList)
The list of tags to associate with the workflow execution. You can specify a maximum of 5 tags. You can list workflow executions with a specific tag by calling ListOpenWorkflowExecutions or ListClosedWorkflowExecutions and specifying a TagFilter.
tagList
- The list of tags to associate with the workflow execution. You can specify a maximum of 5 tags. You
can list workflow executions with a specific tag by calling ListOpenWorkflowExecutions or
ListClosedWorkflowExecutions and specifying a TagFilter.StartWorkflowExecutionRequest.Builder tagList(String... tagList)
The list of tags to associate with the workflow execution. You can specify a maximum of 5 tags. You can list workflow executions with a specific tag by calling ListOpenWorkflowExecutions or ListClosedWorkflowExecutions and specifying a TagFilter.
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 to associate with the workflow execution. You can specify a maximum of 5 tags. You
can list workflow executions with a specific tag by calling ListOpenWorkflowExecutions or
ListClosedWorkflowExecutions and specifying a TagFilter.StartWorkflowExecutionRequest.Builder taskStartToCloseTimeout(String taskStartToCloseTimeout)
Specifies the maximum duration of decision tasks for this workflow execution. This parameter overrides the
defaultTaskStartToCloseTimout
specified when registering the workflow type using
RegisterWorkflowType.
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
- Specifies the maximum duration of decision tasks for this workflow execution. This parameter overrides
the defaultTaskStartToCloseTimout
specified when registering the workflow type using
RegisterWorkflowType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
StartWorkflowExecutionRequest.Builder childPolicy(String childPolicy)
If set, specifies the policy to use for the child workflow executions of this workflow execution if it is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout. This policy overrides the default child policy specified when registering the workflow type using RegisterWorkflowType.
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
- If set, specifies the policy to use for the child workflow executions of this workflow execution if it
is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired
timeout. This policy overrides the default child policy specified when registering the workflow type
using RegisterWorkflowType.
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
StartWorkflowExecutionRequest.Builder childPolicy(ChildPolicy childPolicy)
If set, specifies the policy to use for the child workflow executions of this workflow execution if it is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout. This policy overrides the default child policy specified when registering the workflow type using RegisterWorkflowType.
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
- If set, specifies the policy to use for the child workflow executions of this workflow execution if it
is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired
timeout. This policy overrides the default child policy specified when registering the workflow type
using RegisterWorkflowType.
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
StartWorkflowExecutionRequest.Builder lambdaRole(String lambdaRole)
The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda functions.
lambdaRole
- The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda functions. Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.