Interface CfnComponent.ComponentDataConfigurationProperty

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

@Stability(Stable) public static interface CfnComponent.ComponentDataConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The ComponentDataConfiguration property specifies the configuration for binding a component's properties to data.

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_;
 ComponentDataConfigurationProperty componentDataConfigurationProperty = ComponentDataConfigurationProperty.builder()
         .model("model")
         // the properties below are optional
         .identifiers(List.of("identifiers"))
         .predicate(PredicateProperty.builder()
                 .and(List.of(predicateProperty_))
                 .field("field")
                 .operand("operand")
                 .operandType("operandType")
                 .operator("operator")
                 .or(List.of(predicateProperty_))
                 .build())
         .sort(List.of(SortPropertyProperty.builder()
                 .direction("direction")
                 .field("field")
                 .build()))
         .build();
 

See Also: