Interface CfnComponent.ComponentPropertyBindingPropertiesProperty

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

@Stability(Stable) public static interface CfnComponent.ComponentPropertyBindingPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The ComponentPropertyBindingProperties property specifies a component property to associate with a binding property.

This enables exposed properties on the top level component to propagate data to the component'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.*;
 ComponentPropertyBindingPropertiesProperty componentPropertyBindingPropertiesProperty = ComponentPropertyBindingPropertiesProperty.builder()
         .property("property")
         // the properties below are optional
         .field("field")
         .build();