Interface FormInputValueProperty.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FormInputValueProperty.Builder,
,FormInputValueProperty> SdkBuilder<FormInputValueProperty.Builder,
,FormInputValueProperty> SdkPojo
- Enclosing class:
FormInputValueProperty
@Mutable
@NotThreadSafe
public static interface FormInputValueProperty.Builder
extends SdkPojo, CopyableBuilder<FormInputValueProperty.Builder,FormInputValueProperty>
-
Method Summary
Modifier and TypeMethodDescriptiondefault FormInputValueProperty.Builder
bindingProperties
(Consumer<FormInputValuePropertyBindingProperties.Builder> bindingProperties) The information to bind fields to data at runtime.bindingProperties
(FormInputValuePropertyBindingProperties bindingProperties) The information to bind fields to data at runtime.concat
(Collection<FormInputValueProperty> concat) A list of form properties to concatenate to create the value to assign to this field property.concat
(Consumer<FormInputValueProperty.Builder>... concat) A list of form properties to concatenate to create the value to assign to this field property.concat
(FormInputValueProperty... concat) A list of form properties to concatenate to create the value to assign to this field property.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, sdkFieldNameToField, sdkFields
-
Method Details
-
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.Builder
avoiding the need to create one manually viaFormInputValuePropertyBindingProperties.builder()
.When the
Consumer
completes,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:
-
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
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
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.Builder
avoiding the need to create one manually viaFormInputValueProperty.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconcat(List<FormInputValueProperty>)
.- 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:
-