OpsItemCategory

class aws_cdk.aws_cloudwatch_actions.OpsItemCategory(value)

Bases: Enum

Types of OpsItem category available.

ExampleMetadata:

infused

Example:

# alarm: cloudwatch.Alarm

# Create an OpsItem with specific severity and category when alarm triggers
alarm.add_alarm_action(
    actions.SsmAction(actions.OpsItemSeverity.CRITICAL, actions.OpsItemCategory.PERFORMANCE))

Attributes

AVAILABILITY

Set the category to availability.

COST

Set the category to cost.

PERFORMANCE

Set the category to performance.

RECOVERY

Set the category to recovery.

SECURITY

Set the category to security.