Interface CfnForm.FormInputBindingPropertiesValueProperty

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

@Stability(Stable) public static interface CfnForm.FormInputBindingPropertiesValueProperty extends software.amazon.jsii.JsiiSerializable
Represents the data binding configuration for a form's input fields at runtime.You can use FormInputBindingPropertiesValue to add exposed properties to a form to allow different values to be entered when a form is reused in different places in an app.

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.*;
 FormInputBindingPropertiesValueProperty formInputBindingPropertiesValueProperty = FormInputBindingPropertiesValueProperty.builder()
         .bindingProperties(FormInputBindingPropertiesValuePropertiesProperty.builder()
                 .model("model")
                 .build())
         .type("type")
         .build();
 

See Also: