Interface WorkflowStepOutputUnion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowStepOutputUnion.Builder,WorkflowStepOutputUnion>,SdkBuilder<WorkflowStepOutputUnion.Builder,WorkflowStepOutputUnion>,SdkPojo
- Enclosing class:
- WorkflowStepOutputUnion
public static interface WorkflowStepOutputUnion.Builder extends SdkPojo, CopyableBuilder<WorkflowStepOutputUnion.Builder,WorkflowStepOutputUnion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowStepOutputUnion.BuilderintegerValue(Integer integerValue)The integer value.WorkflowStepOutputUnion.BuilderlistOfStringValue(String... listOfStringValue)The list of string value.WorkflowStepOutputUnion.BuilderlistOfStringValue(Collection<String> listOfStringValue)The list of string value.WorkflowStepOutputUnion.BuilderstringValue(String stringValue)The string value.-
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, sdkFields
-
-
-
-
Method Detail
-
integerValue
WorkflowStepOutputUnion.Builder integerValue(Integer integerValue)
The integer value.
- Parameters:
integerValue- The integer value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValue
WorkflowStepOutputUnion.Builder stringValue(String stringValue)
The string value.
- Parameters:
stringValue- The string value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listOfStringValue
WorkflowStepOutputUnion.Builder listOfStringValue(Collection<String> listOfStringValue)
The list of string value.
- Parameters:
listOfStringValue- The list of string value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listOfStringValue
WorkflowStepOutputUnion.Builder listOfStringValue(String... listOfStringValue)
The list of string value.
- Parameters:
listOfStringValue- The list of string value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-