UNPKG

cdk-monitoring-constructs

Version:

[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/cdklabs/cdk-monitoring-constructs) [![NPM version](https://badge.fury.io/js/cdk-monitoring-constructs.svg)](https://badge

15 lines (14 loc) 421 B
import { AlarmBase } from "aws-cdk-lib/aws-cloudwatch"; import { AlarmMetadata } from "./AlarmFactory"; /** * Properties necessary to append actions to an alarm. */ export interface AlarmActionStrategyProps extends AlarmMetadata { readonly alarm: AlarmBase; } /** * An object that appends actions to alarms. */ export interface IAlarmActionStrategy { addAlarmActions(props: AlarmActionStrategyProps): void; }