Interface StepParameter.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<StepParameter.Builder,,StepParameter> SdkBuilder<StepParameter.Builder,,StepParameter> SdkPojo
- Enclosing class:
StepParameter
@Mutable
@NotThreadSafe
public static interface StepParameter.Builder
extends SdkPojo, CopyableBuilder<StepParameter.Builder,StepParameter>
-
Method Summary
Modifier and TypeMethodDescriptiondefault StepParameter.Builderchunks(Consumer<StepParameterChunks.Builder> chunks) The configuration for task chunking.chunks(StepParameterChunks chunks) The configuration for task chunking.The name of the parameter.The data type of the parameter.type(StepParameterType type) The data type of the parameter.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
name
The name of the parameter.
- Parameters:
name- The name of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
The data type of the parameter.
- Parameters:
type- The data type of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
type
The data type of the parameter.
- Parameters:
type- The data type of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
chunks
The configuration for task chunking.
- Parameters:
chunks- The configuration for task chunking.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
chunks
The configuration for task chunking.
This is a convenience method that creates an instance of theStepParameterChunks.Builderavoiding the need to create one manually viaStepParameterChunks.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tochunks(StepParameterChunks).- Parameters:
chunks- a consumer that will call methods onStepParameterChunks.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-