All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.cloudwatch.actions.OpsItemSeverity Maven / Gradle / Ivy

package software.amazon.awscdk.services.cloudwatch.actions;

/**
 * Types of OpsItem severity available.
 * 

* Example: *

*

 * Alarm alarm;
 * // Create an OpsItem with specific severity and category when alarm triggers
 * alarm.addAlarmAction(
 * new SsmAction(OpsItemSeverity.CRITICAL, OpsItemCategory.PERFORMANCE));
 * 
*/ @javax.annotation.Generated(value = "jsii-pacmak/1.84.0 (build 5404dcf)", date = "2023-06-19T16:30:46.257Z") @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.cloudwatch.actions.$Module.class, fqn = "@aws-cdk/aws-cloudwatch-actions.OpsItemSeverity") public enum OpsItemSeverity { /** * Set the severity to critical. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) CRITICAL, /** * Set the severity to high. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) HIGH, /** * Set the severity to medium. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) MEDIUM, /** * Set the severity to low. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) LOW, }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy