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

14 lines (13 loc) 620 B
import { AlarmFactory, CustomAlarmThreshold } from "../../alarm"; import { MetricWithAlarmSupport } from "../../metric"; export interface MinProcessedBytesThreshold extends CustomAlarmThreshold { /** * Threshold for the least number of bytes processed */ readonly minProcessedBytes: number; } export declare class ThroughputAlarmFactory { protected readonly alarmFactory: AlarmFactory; constructor(alarmFactory: AlarmFactory); addMinProcessedBytesAlarm(metric: MetricWithAlarmSupport, props: MinProcessedBytesThreshold, disambiguator?: string): import("../../alarm").AlarmWithAnnotation; }