Package software.amazon.awscdk.services.cloudwatch.actions
CloudWatch Alarm Actions library
---
AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
This library contains a set of classes which can be used as CloudWatch Alarm actions.
The currently implemented actions are: EC2 Actions, SNS Actions, SSM OpsCenter Actions, Autoscaling Actions and Application Autoscaling Actions
EC2 Action Example
// Alarm must be configured with an EC2 per-instance metric Alarm alarm; // Attach a reboot when alarm triggers alarm.addAlarmAction( new Ec2Action(Ec2InstanceAction.REBOOT));
SSM OpsCenter Action Example
Alarm alarm; // Create an OpsItem with specific severity and category when alarm triggers alarm.addAlarmAction( new SsmAction(OpsItemSeverity.CRITICAL, OpsItemCategory.PERFORMANCE));
See @aws-cdk/aws-cloudwatch
for more information.
Deprecated: AWS CDK v1 has reached End-of-Support on 2023-06-01.
This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html
-
ClassDescriptionUse an ApplicationAutoScaling StepScalingAction as an Alarm Action.Use an AutoScaling StepScalingAction as an Alarm Action.Use an EC2 action as an Alarm action.Types of EC2 actions available.Types of OpsItem category available.Types of OpsItem severity available.Use an SNS topic as an alarm action.Use an SSM OpsItem action as an Alarm action.