Interface DecimalParameterDeclaration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DecimalParameterDeclaration.Builder,DecimalParameterDeclaration>,SdkBuilder<DecimalParameterDeclaration.Builder,DecimalParameterDeclaration>,SdkPojo
- Enclosing class:
- DecimalParameterDeclaration
@Mutable @NotThreadSafe public static interface DecimalParameterDeclaration.Builder extends SdkPojo, CopyableBuilder<DecimalParameterDeclaration.Builder,DecimalParameterDeclaration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DecimalParameterDeclaration.BuilderdefaultValues(Consumer<DecimalDefaultValues.Builder> defaultValues)The default values of a parameter.DecimalParameterDeclaration.BuilderdefaultValues(DecimalDefaultValues defaultValues)The default values of a parameter.DecimalParameterDeclaration.BuildermappedDataSetParameters(Collection<MappedDataSetParameter> mappedDataSetParameters)Sets the value of the MappedDataSetParameters property for this object.DecimalParameterDeclaration.BuildermappedDataSetParameters(Consumer<MappedDataSetParameter.Builder>... mappedDataSetParameters)Sets the value of the MappedDataSetParameters property for this object.DecimalParameterDeclaration.BuildermappedDataSetParameters(MappedDataSetParameter... mappedDataSetParameters)Sets the value of the MappedDataSetParameters property for this object.DecimalParameterDeclaration.Buildername(String name)The name of the parameter that is being declared.DecimalParameterDeclaration.BuilderparameterValueType(String parameterValueType)The value type determines whether the parameter is a single-value or multi-value parameter.DecimalParameterDeclaration.BuilderparameterValueType(ParameterValueType parameterValueType)The value type determines whether the parameter is a single-value or multi-value parameter.default DecimalParameterDeclaration.BuildervalueWhenUnset(Consumer<DecimalValueWhenUnsetConfiguration.Builder> valueWhenUnset)The configuration that defines the default value of aDecimalparameter when a value has not been set.DecimalParameterDeclaration.BuildervalueWhenUnset(DecimalValueWhenUnsetConfiguration valueWhenUnset)The configuration that defines the default value of aDecimalparameter when a value has not been set.-
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
-
parameterValueType
DecimalParameterDeclaration.Builder parameterValueType(String parameterValueType)
The value type determines whether the parameter is a single-value or multi-value parameter.
- Parameters:
parameterValueType- The value type determines whether the parameter is a single-value or multi-value parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterValueType,ParameterValueType
-
parameterValueType
DecimalParameterDeclaration.Builder parameterValueType(ParameterValueType parameterValueType)
The value type determines whether the parameter is a single-value or multi-value parameter.
- Parameters:
parameterValueType- The value type determines whether the parameter is a single-value or multi-value parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterValueType,ParameterValueType
-
name
DecimalParameterDeclaration.Builder name(String name)
The name of the parameter that is being declared.
- Parameters:
name- The name of the parameter that is being declared.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValues
DecimalParameterDeclaration.Builder defaultValues(DecimalDefaultValues defaultValues)
The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
- Parameters:
defaultValues- The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValues
default DecimalParameterDeclaration.Builder defaultValues(Consumer<DecimalDefaultValues.Builder> defaultValues)
The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
This is a convenience method that creates an instance of theDecimalDefaultValues.Builderavoiding the need to create one manually viaDecimalDefaultValues.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todefaultValues(DecimalDefaultValues).- Parameters:
defaultValues- a consumer that will call methods onDecimalDefaultValues.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
defaultValues(DecimalDefaultValues)
-
valueWhenUnset
DecimalParameterDeclaration.Builder valueWhenUnset(DecimalValueWhenUnsetConfiguration valueWhenUnset)
The configuration that defines the default value of a
Decimalparameter when a value has not been set.- Parameters:
valueWhenUnset- The configuration that defines the default value of aDecimalparameter when a value has not been set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueWhenUnset
default DecimalParameterDeclaration.Builder valueWhenUnset(Consumer<DecimalValueWhenUnsetConfiguration.Builder> valueWhenUnset)
The configuration that defines the default value of a
This is a convenience method that creates an instance of theDecimalparameter when a value has not been set.DecimalValueWhenUnsetConfiguration.Builderavoiding the need to create one manually viaDecimalValueWhenUnsetConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovalueWhenUnset(DecimalValueWhenUnsetConfiguration).- Parameters:
valueWhenUnset- a consumer that will call methods onDecimalValueWhenUnsetConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
valueWhenUnset(DecimalValueWhenUnsetConfiguration)
-
mappedDataSetParameters
DecimalParameterDeclaration.Builder mappedDataSetParameters(Collection<MappedDataSetParameter> mappedDataSetParameters)
Sets the value of the MappedDataSetParameters property for this object.- Parameters:
mappedDataSetParameters- The new value for the MappedDataSetParameters property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappedDataSetParameters
DecimalParameterDeclaration.Builder mappedDataSetParameters(MappedDataSetParameter... mappedDataSetParameters)
Sets the value of the MappedDataSetParameters property for this object.- Parameters:
mappedDataSetParameters- The new value for the MappedDataSetParameters property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappedDataSetParameters
DecimalParameterDeclaration.Builder mappedDataSetParameters(Consumer<MappedDataSetParameter.Builder>... mappedDataSetParameters)
Sets the value of the MappedDataSetParameters property for this object. This is a convenience method that creates an instance of theMappedDataSetParameter.Builderavoiding the need to create one manually viaMappedDataSetParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mappedDataSetParameters(List.) - Parameters:
mappedDataSetParameters- a consumer that will call methods onMappedDataSetParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mappedDataSetParameters(java.util.Collection)
-
-