Cloneable
, ReadLimitInfo
, ToCopyableBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
@Generated("software.amazon.awssdk:codegen") public class StartWorkflowExecutionRequest extends AmazonWebServiceRequest implements ToCopyableBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
Modifier and Type | Class | Description |
---|---|---|
static interface |
StartWorkflowExecutionRequest.Builder |
NOOP
Modifier and Type | Method | Description |
---|---|---|
static StartWorkflowExecutionRequest.Builder |
builder() |
|
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.
|
String |
domain() |
The name of the domain in which the workflow execution is created.
|
boolean |
equals(Object obj) |
|
String |
executionStartToCloseTimeout() |
The total duration for this workflow execution.
|
int |
hashCode() |
|
String |
input() |
The input for the workflow execution.
|
String |
lambdaRole() |
The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda functions.
|
static Class<? extends StartWorkflowExecutionRequest.Builder> |
serializableBuilderClass() |
|
List<String> |
tagList() |
The list of tags to associate with the workflow execution.
|
TaskList |
taskList() |
The task list to use for the decision tasks generated for this workflow execution.
|
String |
taskPriority() |
The task priority to use for this workflow execution.
|
String |
taskStartToCloseTimeout() |
Specifies the maximum duration of decision tasks for this workflow execution.
|
StartWorkflowExecutionRequest.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
|
String |
workflowId() |
The user defined identifier associated with the workflow execution.
|
WorkflowType |
workflowType() |
The type of the workflow to start.
|
clone, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout
public String domain()
The name of the domain in which the workflow execution is created.
public 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
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.
public WorkflowType workflowType()
The type of the workflow to start.
public 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.
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.
public 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.
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.
public 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
is made available to the new workflow execution in the
WorkflowExecutionStarted
history event.public 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.
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.
public List<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.
public 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.
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.
public 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.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
public String lambdaRole()
The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda functions.
public StartWorkflowExecutionRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<StartWorkflowExecutionRequest.Builder,StartWorkflowExecutionRequest>
public static StartWorkflowExecutionRequest.Builder builder()
public static Class<? extends StartWorkflowExecutionRequest.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.