cdk-monitoring-constructs
Version:
[](https://gitpod.io/#https://github.com/cdklabs/cdk-monitoring-constructs) [](https://badge
9 lines (8 loc) • 358 B
TypeScript
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;
}