enum OpsItemSeverity
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.CloudWatch.Actions.OpsItemSeverity | 
|  Java | software.amazon.awscdk.services.cloudwatch.actions.OpsItemSeverity | 
|  Python | aws_cdk.aws_cloudwatch_actions.OpsItemSeverity | 
|  TypeScript (source) | @aws-cdk/aws-cloudwatch-actions»OpsItemSeverity | 
Types of OpsItem severity available.
Example
declare const alarm: cloudwatch.Alarm;
// Create an OpsItem with specific severity and category when alarm triggers
alarm.addAlarmAction(
  new actions.SsmAction(
    actions.OpsItemSeverity.CRITICAL,
    actions.OpsItemCategory.PERFORMANCE // category is optional
  )
);
Members
| Name | Description | 
|---|---|
| CRITICAL | Set the severity to critical. | 
| HIGH | Set the severity to high. | 
| MEDIUM | Set the severity to medium. | 
| LOW | Set the severity to low. | 
CRITICAL
Set the severity to critical.
HIGH
Set the severity to high.
MEDIUM
Set the severity to medium.
LOW
Set the severity to low.
