@Generated(value="software.amazon.awssdk:codegen") public class RegisterWorkflowTypeRequest extends AmazonWebServiceRequest implements software.amazon.awssdk.utils.builder.ToCopyableBuilder<RegisterWorkflowTypeRequest.Builder,RegisterWorkflowTypeRequest>
| Modifier and Type | Class and Description |
|---|---|
static interface |
RegisterWorkflowTypeRequest.Builder |
NOOP| Modifier and Type | Method and Description |
|---|---|
static RegisterWorkflowTypeRequest.Builder |
builder() |
String |
defaultChildPolicy()
If set, specifies the default policy to use for the child workflow executions when a workflow execution of this
type is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired
timeout.
|
String |
defaultExecutionStartToCloseTimeout()
If set, specifies the default maximum duration for executions of this workflow type.
|
String |
defaultLambdaRole()
The ARN of the default IAM role to use when a workflow execution of this type invokes AWS Lambda functions.
|
TaskList |
defaultTaskList()
If set, specifies the default task list to use for scheduling decision tasks for executions of this workflow
type.
|
String |
defaultTaskPriority()
The default task priority to assign to the workflow type.
|
String |
defaultTaskStartToCloseTimeout()
If set, specifies the default maximum duration of decision tasks for this workflow type.
|
String |
description()
Textual description of the workflow type.
|
String |
domain()
The name of the domain in which to register the workflow type.
|
boolean |
equals(Object obj) |
int |
hashCode() |
String |
name()
The name of the workflow type.
|
static Class<? extends RegisterWorkflowTypeRequest.Builder> |
serializableBuilderClass() |
RegisterWorkflowTypeRequest.Builder |
toBuilder() |
String |
toString() |
String |
version()
The version of the workflow type.
|
clone, copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeoutpublic String domain()
The name of the domain in which to register the workflow type.
public String name()
The name of 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.
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 version()
The version of 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.
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 description()
Textual description of the workflow type.
public String defaultTaskStartToCloseTimeout()
If set, specifies the default maximum duration of decision tasks for this workflow type. This default can be
overridden when starting a workflow execution using the StartWorkflowExecution action or the
StartChildWorkflowExecution decision.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
StartChildWorkflowExecution decision.
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 defaultExecutionStartToCloseTimeout()
If set, specifies the default maximum duration for executions of this workflow type. You can override this
default when starting an execution through the StartWorkflowExecution action or
StartChildWorkflowExecution decision.
The duration is specified in seconds; an integer greater than or equal to 0. Unlike some of the other timeout
parameters in Amazon SWF, you cannot specify a value of "NONE" for
defaultExecutionStartToCloseTimeout; there is a one-year max limit on the time that a workflow
execution can run. Exceeding this limit will always cause the workflow execution to time out.
StartChildWorkflowExecution decision.
The duration is specified in seconds; an integer greater than or equal to 0. Unlike some of the other
timeout parameters in Amazon SWF, you cannot specify a value of "NONE" for
defaultExecutionStartToCloseTimeout; there is a one-year max limit on the time that a
workflow execution can run. Exceeding this limit will always cause the workflow execution to time out.
public TaskList defaultTaskList()
If set, specifies the default task list to use for scheduling decision tasks for executions of this workflow
type. This default is used only if a task list is not provided when starting the execution through the
StartWorkflowExecution action or StartChildWorkflowExecution decision.
StartChildWorkflowExecution decision.public String defaultTaskPriority()
The default task priority to assign to the workflow type. If not assigned, then "0" 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 defaultChildPolicy()
If set, specifies the default policy to use for the child workflow executions when a workflow execution of this
type is terminated, by calling the TerminateWorkflowExecution action explicitly or due to an expired
timeout. This default can be overridden when starting a workflow execution using the
StartWorkflowExecution action or the StartChildWorkflowExecution decision.
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.StartChildWorkflowExecution decision.
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.ChildPolicypublic String defaultLambdaRole()
The ARN of the default IAM role to use when a workflow execution of this type invokes AWS Lambda functions.
This default can be overridden when starting a workflow execution using the StartWorkflowExecution action
or the StartChildWorkflowExecution and ContinueAsNewWorkflowExecution decision.
This default can be overridden when starting a workflow execution using the StartWorkflowExecution
action or the StartChildWorkflowExecution and ContinueAsNewWorkflowExecution
decision.
public RegisterWorkflowTypeRequest.Builder toBuilder()
toBuilder in interface software.amazon.awssdk.utils.builder.ToCopyableBuilder<RegisterWorkflowTypeRequest.Builder,RegisterWorkflowTypeRequest>public static RegisterWorkflowTypeRequest.Builder builder()
public static Class<? extends RegisterWorkflowTypeRequest.Builder> serializableBuilderClass()
Copyright © 2017. All rights reserved.