Interface CfnComponent.PredicateProperty

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

@Stability(Stable) public static interface CfnComponent.PredicateProperty extends software.amazon.jsii.JsiiSerializable
The Predicate property specifies information for generating Amplify DataStore queries.

Use Predicate to retrieve a subset of the data in a collection.

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_;
 PredicateProperty predicateProperty = PredicateProperty.builder()
         .and(List.of(predicateProperty_))
         .field("field")
         .operand("operand")
         .operandType("operandType")
         .operator("operator")
         .or(List.of(predicateProperty_))
         .build();
 

See Also: