Interface CfnTrigger.PredicateProperty

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

@Stability(Stable) public static interface CfnTrigger.PredicateProperty extends software.amazon.jsii.JsiiSerializable
Defines the predicate of the trigger, which determines when it fires.

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.glue.*;
 PredicateProperty predicateProperty = PredicateProperty.builder()
         .conditions(List.of(ConditionProperty.builder()
                 .crawlerName("crawlerName")
                 .crawlState("crawlState")
                 .jobName("jobName")
                 .logicalOperator("logicalOperator")
                 .state("state")
                 .build()))
         .logical("logical")
         .build();
 

See Also: