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