Interface CfnTrigger.ConditionProperty

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

@Stability(Stable) public static interface CfnTrigger.ConditionProperty extends software.amazon.jsii.JsiiSerializable
Defines a condition under which a trigger 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.*;
 ConditionProperty conditionProperty = ConditionProperty.builder()
         .crawlerName("crawlerName")
         .crawlState("crawlState")
         .jobName("jobName")
         .logicalOperator("logicalOperator")
         .state("state")
         .build();
 

See Also: