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
The condition that causes the trigger to fire.

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.devopsagent.*;
 ConditionProperty conditionProperty = ConditionProperty.builder()
         .schedule(ScheduleProperty.builder()
                 .expression("expression")
                 .build())
         .build();
 

See Also: