Interface PropertyParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyParameters.Builder,PropertyParameters>,SdkBuilder<PropertyParameters.Builder,PropertyParameters>,SdkPojo
- Enclosing class:
- PropertyParameters
@Mutable @NotThreadSafe public static interface PropertyParameters.Builder extends SdkPojo, CopyableBuilder<PropertyParameters.Builder,PropertyParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyParameters.Builderproperties(Collection<Parameter> properties)A list of parameters in the request body.PropertyParameters.Builderproperties(Consumer<Parameter.Builder>... properties)A list of parameters in the request body.PropertyParameters.Builderproperties(Parameter... properties)A list of parameters in the request body.-
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
-
properties
PropertyParameters.Builder properties(Collection<Parameter> properties)
A list of parameters in the request body.
- Parameters:
properties- A list of parameters in the request body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
PropertyParameters.Builder properties(Parameter... properties)
A list of parameters in the request body.
- Parameters:
properties- A list of parameters in the request body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
PropertyParameters.Builder properties(Consumer<Parameter.Builder>... properties)
A list of parameters in the request body.
This is a convenience method that creates an instance of theParameter.Builderavoiding the need to create one manually viaParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#properties(List.) - Parameters:
properties- a consumer that will call methods onParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#properties(java.util.Collection)
-
-