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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComponent.ComponentPropertyBindingPropertiesPropertystatic final classAn implementation forCfnComponent.ComponentPropertyBindingPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProperty
The component property to bind to the data field. -
getField
The data field to bind the property to. -
builder
-