Interface CfnComponentPropsMixin.ComponentPropertyBindingPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponentPropsMixin.ComponentPropertyBindingPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnComponentPropsMixin
@Stability(Stable)
public static interface CfnComponentPropsMixin.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.cfnpropertymixins.services.amplifyuibuilder.*;
ComponentPropertyBindingPropertiesProperty componentPropertyBindingPropertiesProperty = ComponentPropertyBindingPropertiesProperty.builder()
.field("field")
.property("property")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnComponentPropsMixin.ComponentPropertyBindingPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getField
The data field to bind the property to.- See Also:
-
getProperty
The component property to bind to the data field.- See Also:
-
builder
@Stability(Stable) static CfnComponentPropsMixin.ComponentPropertyBindingPropertiesProperty.Builder builder()
-