Interface FormInputValueProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FormInputValueProperty.Builder,FormInputValueProperty>,SdkBuilder<FormInputValueProperty.Builder,FormInputValueProperty>,SdkPojo
- Enclosing class:
- FormInputValueProperty
public static interface FormInputValueProperty.Builder extends SdkPojo, CopyableBuilder<FormInputValueProperty.Builder,FormInputValueProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FormInputValueProperty.BuilderbindingProperties(Consumer<FormInputValuePropertyBindingProperties.Builder> bindingProperties)The information to bind fields to data at runtime.FormInputValueProperty.BuilderbindingProperties(FormInputValuePropertyBindingProperties bindingProperties)The information to bind fields to data at runtime.FormInputValueProperty.Builderconcat(Collection<FormInputValueProperty> concat)A list of form properties to concatenate to create the value to assign to this field property.FormInputValueProperty.Builderconcat(Consumer<FormInputValueProperty.Builder>... concat)A list of form properties to concatenate to create the value to assign to this field property.FormInputValueProperty.Builderconcat(FormInputValueProperty... concat)A list of form properties to concatenate to create the value to assign to this field property.FormInputValueProperty.Buildervalue(String value)The value to assign to the input field.-
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
-
value
FormInputValueProperty.Builder value(String value)
The value to assign to the input field.
- Parameters:
value- The value to assign to the input field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bindingProperties
FormInputValueProperty.Builder bindingProperties(FormInputValuePropertyBindingProperties 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.
-
bindingProperties
default FormInputValueProperty.Builder bindingProperties(Consumer<FormInputValuePropertyBindingProperties.Builder> bindingProperties)
The information to bind fields to data at runtime.
This is a convenience method that creates an instance of theFormInputValuePropertyBindingProperties.Builderavoiding the need to create one manually viaFormInputValuePropertyBindingProperties.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobindingProperties(FormInputValuePropertyBindingProperties).- Parameters:
bindingProperties- a consumer that will call methods onFormInputValuePropertyBindingProperties.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
bindingProperties(FormInputValuePropertyBindingProperties)
-
concat
FormInputValueProperty.Builder concat(Collection<FormInputValueProperty> concat)
A list of form properties to concatenate to create the value to assign to this field property.
- Parameters:
concat- A list of form properties to concatenate to create the value to assign to this field property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
concat
FormInputValueProperty.Builder concat(FormInputValueProperty... concat)
A list of form properties to concatenate to create the value to assign to this field property.
- Parameters:
concat- A list of form properties to concatenate to create the value to assign to this field property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
concat
FormInputValueProperty.Builder concat(Consumer<FormInputValueProperty.Builder>... concat)
A list of form properties to concatenate to create the value to assign to this field property.
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 to#concat(List.) - Parameters:
concat- 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:
#concat(java.util.Collection)
-
-