Interface CfnForm.FormInputValuePropertyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnForm.FormInputValuePropertyProperty.Jsii$Proxy
- Enclosing class:
CfnForm
@Stability(Stable)
public static interface CfnForm.FormInputValuePropertyProperty
extends software.amazon.jsii.JsiiSerializable
The
FormInputValueProperty property specifies the configuration for an input field on a form.
Use FormInputValueProperty to specify the values to render or bind by default.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amplifyuibuilder.*;
FormInputValuePropertyProperty formInputValuePropertyProperty_;
FormInputValuePropertyProperty formInputValuePropertyProperty = FormInputValuePropertyProperty.builder()
.bindingProperties(FormInputValuePropertyBindingPropertiesProperty.builder()
.property("property")
// the properties below are optional
.field("field")
.build())
.concat(List.of(formInputValuePropertyProperty_))
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnForm.FormInputValuePropertyPropertystatic final classAn implementation forCfnForm.FormInputValuePropertyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBindingProperties
The information to bind fields to data at runtime.Returns union: either
IResolvableorCfnForm.FormInputValuePropertyBindingPropertiesProperty- See Also:
-
getConcat
A list of form properties to concatenate to create the value to assign to this field property.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnForm.FormInputValuePropertyProperty>- See Also:
-
getValue
The value to assign to the input field.- See Also:
-
builder
-