Show / Hide Table of Contents

Enum OpsItemSeverity

Types of OpsItem severity available.

Namespace: Amazon.CDK.AWS.CloudWatch.Actions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum OpsItemSeverity
Syntax (vb)
Public Enum OpsItemSeverity
Remarks

ExampleMetadata: infused

Examples
Alarm alarm;

            // Create an OpsItem with specific severity and category when alarm triggers
            alarm.AddAlarmAction(
            new SsmAction(OpsItemSeverity.CRITICAL, OpsItemCategory.PERFORMANCE));

Synopsis

Fields

CRITICAL

Set the severity to critical.

HIGH

Set the severity to high.

LOW

Set the severity to low.

MEDIUM

Set the severity to medium.

Fields

Name Description
CRITICAL

Set the severity to critical.

HIGH

Set the severity to high.

LOW

Set the severity to low.

MEDIUM

Set the severity to medium.

Back to top Generated by DocFX