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: