Interface CfnPlan.AssociatedAlarmProperty

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

@Stability(Stable) public static interface CfnPlan.AssociatedAlarmProperty extends software.amazon.jsii.JsiiSerializable
An Amazon CloudWatch alarm associated with a Region switch plan.

These alarms can be used to trigger automatic execution of the 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.*;
 AssociatedAlarmProperty associatedAlarmProperty = AssociatedAlarmProperty.builder()
         .alarmType("alarmType")
         .resourceIdentifier("resourceIdentifier")
         // the properties below are optional
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .build();
 

See Also: