Interface WorkflowType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowType.Builder,WorkflowType>,SdkBuilder<WorkflowType.Builder,WorkflowType>,SdkPojo
- Enclosing class:
- WorkflowType
public static interface WorkflowType.Builder extends SdkPojo, CopyableBuilder<WorkflowType.Builder,WorkflowType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowType.Buildername(String name)The name of the workflow type.WorkflowType.Builderversion(String version)The version of the workflow type.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
WorkflowType.Builder name(String name)
The name of the workflow type.
The combination of workflow type name and version must be unique with in a domain.
- Parameters:
name- The name of the workflow type.The combination of workflow type name and version must be unique with in a domain.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
WorkflowType.Builder version(String version)
The version of the workflow type.
The combination of workflow type name and version must be unique with in a domain.
- Parameters:
version- The version of the workflow type.The combination of workflow type name and version must be unique with in a domain.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-