public static interface RegisterWorkflowTypeRequest.Builder extends software.amazon.awssdk.utils.builder.CopyableBuilder<RegisterWorkflowTypeRequest.Builder,RegisterWorkflowTypeRequest>
| Modifier and Type | Method and Description |
|---|---|
RegisterWorkflowTypeRequest.Builder |
defaultChildPolicy(ChildPolicy 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.
|
RegisterWorkflowTypeRequest.Builder |
defaultChildPolicy(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.
|
RegisterWorkflowTypeRequest.Builder |
defaultExecutionStartToCloseTimeout(String defaultExecutionStartToCloseTimeout)
If set, specifies the default maximum duration for executions of this workflow type.
|
RegisterWorkflowTypeRequest.Builder |
defaultLambdaRole(String defaultLambdaRole)
The ARN of the default IAM role to use when a workflow execution of this type invokes AWS Lambda functions.
|
RegisterWorkflowTypeRequest.Builder |
defaultTaskList(TaskList defaultTaskList)
If set, specifies the default task list to use for scheduling decision tasks for executions of this workflow
type.
|
RegisterWorkflowTypeRequest.Builder |
defaultTaskPriority(String defaultTaskPriority)
The default task priority to assign to the workflow type.
|
RegisterWorkflowTypeRequest.Builder |
defaultTaskStartToCloseTimeout(String defaultTaskStartToCloseTimeout)
If set, specifies the default maximum duration of decision tasks for this workflow type.
|
RegisterWorkflowTypeRequest.Builder |
description(String description)
Textual description of the workflow type.
|
RegisterWorkflowTypeRequest.Builder |
domain(String domain)
The name of the domain in which to register the workflow type.
|
RegisterWorkflowTypeRequest.Builder |
name(String name)
The name of the workflow type.
|
RegisterWorkflowTypeRequest.Builder |
version(String version)
The version of the workflow type.
|
copyapply, buildRegisterWorkflowTypeRequest.Builder domain(String domain)
The name of the domain in which to register the workflow type.
domain - The name of the domain in which to register the workflow type.RegisterWorkflowTypeRequest.Builder name(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.
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.
RegisterWorkflowTypeRequest.Builder version(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.
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.
RegisterWorkflowTypeRequest.Builder description(String description)
Textual description of the workflow type.
description - Textual description of the workflow type.RegisterWorkflowTypeRequest.Builder defaultTaskStartToCloseTimeout(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.
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.
RegisterWorkflowTypeRequest.Builder defaultExecutionStartToCloseTimeout(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.
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.
RegisterWorkflowTypeRequest.Builder defaultTaskList(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.
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.RegisterWorkflowTypeRequest.Builder defaultTaskPriority(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.
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.
RegisterWorkflowTypeRequest.Builder defaultChildPolicy(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.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.ChildPolicyRegisterWorkflowTypeRequest.Builder defaultChildPolicy(ChildPolicy 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.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.ChildPolicyRegisterWorkflowTypeRequest.Builder defaultLambdaRole(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.
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.
Copyright © 2017. All rights reserved.