Interface DecimalParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DecimalParameter.Builder,DecimalParameter>,SdkBuilder<DecimalParameter.Builder,DecimalParameter>,SdkPojo
- Enclosing class:
- DecimalParameter
@Mutable @NotThreadSafe public static interface DecimalParameter.Builder extends SdkPojo, CopyableBuilder<DecimalParameter.Builder,DecimalParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecimalParameter.Buildername(String name)A display name for the decimal parameter.DecimalParameter.Buildervalues(Double... values)The values for the decimal parameter.DecimalParameter.Buildervalues(Collection<Double> values)The values for the decimal parameter.-
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
-
name
DecimalParameter.Builder name(String name)
A display name for the decimal parameter.
- Parameters:
name- A display name for the decimal parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DecimalParameter.Builder values(Collection<Double> values)
The values for the decimal parameter.
- Parameters:
values- The values for the decimal parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DecimalParameter.Builder values(Double... values)
The values for the decimal parameter.
- Parameters:
values- The values for the decimal parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-