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

11 lines (10 loc) 538 B
import { AlarmActionStrategyProps, IAlarmActionStrategy } from "./IAlarmActionStrategy"; export declare function multipleActions(...actions: IAlarmActionStrategy[]): MultipleAlarmActionStrategy; /** * Alarm action strategy that combines multiple actions in the same order as they were given. */ export declare class MultipleAlarmActionStrategy implements IAlarmActionStrategy { readonly actions: IAlarmActionStrategy[]; constructor(actions: IAlarmActionStrategy[]); addAlarmActions(props: AlarmActionStrategyProps): void; }