Interface ValueMapping.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ValueMapping.Builder,ValueMapping>,SdkBuilder<ValueMapping.Builder,ValueMapping>,SdkPojo
- Enclosing class:
- ValueMapping
public static interface ValueMapping.Builder extends SdkPojo, CopyableBuilder<ValueMapping.Builder,ValueMapping>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ValueMapping.BuilderdisplayValue(Consumer<FormInputValueProperty.Builder> displayValue)The value to display for the complex object.ValueMapping.BuilderdisplayValue(FormInputValueProperty displayValue)The value to display for the complex object.default ValueMapping.Buildervalue(Consumer<FormInputValueProperty.Builder> value)The complex object.ValueMapping.Buildervalue(FormInputValueProperty value)The complex object.-
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, sdkFields
-
-
-
-
Method Detail
-
displayValue
ValueMapping.Builder displayValue(FormInputValueProperty displayValue)
The value to display for the complex object.
- Parameters:
displayValue- The value to display for the complex object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayValue
default ValueMapping.Builder displayValue(Consumer<FormInputValueProperty.Builder> displayValue)
The value to display for the complex object.
This is a convenience method that creates an instance of theFormInputValueProperty.Builderavoiding the need to create one manually viaFormInputValueProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayValue(FormInputValueProperty).- Parameters:
displayValue- a consumer that will call methods onFormInputValueProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayValue(FormInputValueProperty)
-
value
ValueMapping.Builder value(FormInputValueProperty value)
The complex object.
- Parameters:
value- The complex object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
default ValueMapping.Builder value(Consumer<FormInputValueProperty.Builder> value)
The complex object.
This is a convenience method that creates an instance of theFormInputValueProperty.Builderavoiding the need to create one manually viaFormInputValueProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovalue(FormInputValueProperty).- Parameters:
value- a consumer that will call methods onFormInputValueProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
value(FormInputValueProperty)
-
-