Interface CfnComponent.ComponentBindingPropertiesValuePropertiesProperty

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

@Stability(Stable) public static interface CfnComponent.ComponentBindingPropertiesValuePropertiesProperty extends software.amazon.jsii.JsiiSerializable
The ComponentBindingPropertiesValueProperties property specifies the data binding configuration for a specific property using data stored in AWS .

For AWS connected properties, you can bind a property to data stored in an Amazon S3 bucket, an Amplify DataStore model or an authenticated user attribute.

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.*;
 PredicateProperty predicateProperty_;
 ComponentBindingPropertiesValuePropertiesProperty componentBindingPropertiesValuePropertiesProperty = ComponentBindingPropertiesValuePropertiesProperty.builder()
         .bucket("bucket")
         .defaultValue("defaultValue")
         .field("field")
         .key("key")
         .model("model")
         .predicates(List.of(PredicateProperty.builder()
                 .and(List.of(predicateProperty_))
                 .field("field")
                 .operand("operand")
                 .operandType("operandType")
                 .operator("operator")
                 .or(List.of(predicateProperty_))
                 .build()))
         .slotName("slotName")
         .userAttribute("userAttribute")
         .build();
 

See Also: