Interface CfnPlan.TriggerProperty

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

@Stability(Stable) public static interface CfnPlan.TriggerProperty extends software.amazon.jsii.JsiiSerializable
Defines a condition that can automatically trigger the execution of a Region switch plan.

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.arcregionswitch.*;
 TriggerProperty triggerProperty = TriggerProperty.builder()
         .action("action")
         .conditions(List.of(TriggerConditionProperty.builder()
                 .associatedAlarmName("associatedAlarmName")
                 .condition("condition")
                 .build()))
         .minDelayMinutesBetweenExecutions(123)
         .targetRegion("targetRegion")
         // the properties below are optional
         .description("description")
         .build();
 

See Also: