Interface CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty

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

@Stability(Stable) public static interface CfnFormPropsMixin.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.cfnpropertymixins.services.amplifyuibuilder.*;
 FormInputValuePropertyBindingPropertiesProperty formInputValuePropertyBindingPropertiesProperty = FormInputValuePropertyBindingPropertiesProperty.builder()
         .field("field")
         .property("property")
         .build();
 

See Also: