Interface ParameterSpace.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ParameterSpace.Builder,
,ParameterSpace> SdkBuilder<ParameterSpace.Builder,
,ParameterSpace> SdkPojo
- Enclosing class:
ParameterSpace
@Mutable
@NotThreadSafe
public static interface ParameterSpace.Builder
extends SdkPojo, CopyableBuilder<ParameterSpace.Builder,ParameterSpace>
-
Method Summary
Modifier and TypeMethodDescriptioncombination
(String combination) The combination expression to use in the search.parameters
(Collection<StepParameter> parameters) The parameters to search for.parameters
(Consumer<StepParameter.Builder>... parameters) The parameters to search for.parameters
(StepParameter... parameters) The parameters to search for.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 Details
-
parameters
The parameters to search for.
- Parameters:
parameters
- The parameters to search for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
The parameters to search for.
- Parameters:
parameters
- The parameters to search for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
The parameters to search for.
This is a convenience method that creates an instance of theStepParameter.Builder
avoiding the need to create one manually viaStepParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toparameters(List<StepParameter>)
.- Parameters:
parameters
- a consumer that will call methods onStepParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
combination
The combination expression to use in the search.
- Parameters:
combination
- The combination expression to use in the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-