Interface CfnForm.FormInputValuePropertyBindingPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnForm.FormInputValuePropertyBindingPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnForm

@Stability(Stable) public static interface CfnForm.FormInputValuePropertyBindingPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Associates a form property to a binding property.

This enables exposed properties on the top level form to propagate data to the form's property values.

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.*;
 FormInputValuePropertyBindingPropertiesProperty formInputValuePropertyBindingPropertiesProperty = FormInputValuePropertyBindingPropertiesProperty.builder()
         .property("property")
         // the properties below are optional
         .field("field")
         .build();
 

See Also: