Interface ValueMappings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ValueMappings.Builder,ValueMappings>,SdkBuilder<ValueMappings.Builder,ValueMappings>,SdkPojo
- Enclosing class:
- ValueMappings
public static interface ValueMappings.Builder extends SdkPojo, CopyableBuilder<ValueMappings.Builder,ValueMappings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueMappings.BuilderbindingProperties(Map<String,FormInputBindingPropertiesValue> bindingProperties)The information to bind fields to data at runtime.ValueMappings.Buildervalues(Collection<ValueMapping> values)The value and display value pairs.ValueMappings.Buildervalues(Consumer<ValueMapping.Builder>... values)The value and display value pairs.ValueMappings.Buildervalues(ValueMapping... values)The value and display value pairs.-
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
-
values
ValueMappings.Builder values(Collection<ValueMapping> values)
The value and display value pairs.
- Parameters:
values- The value and display value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ValueMappings.Builder values(ValueMapping... values)
The value and display value pairs.
- Parameters:
values- The value and display value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ValueMappings.Builder values(Consumer<ValueMapping.Builder>... values)
The value and display value pairs.
This is a convenience method that creates an instance of theValueMapping.Builderavoiding the need to create one manually viaValueMapping.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#values(List.) - Parameters:
values- a consumer that will call methods onValueMapping.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#values(java.util.Collection)
-
bindingProperties
ValueMappings.Builder bindingProperties(Map<String,FormInputBindingPropertiesValue> bindingProperties)
The information to bind fields to data at runtime.
- Parameters:
bindingProperties- The information to bind fields to data at runtime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-