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

9 lines (8 loc) 358 B
import { AlarmActionStrategyProps, IAlarmActionStrategy } from "./IAlarmActionStrategy"; export declare function noopAction(): NoopAlarmActionStrategy; /** * Alarm action strategy that does not add any actions. */ export declare class NoopAlarmActionStrategy implements IAlarmActionStrategy { addAlarmActions(_props: AlarmActionStrategyProps): void; }