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) 724 B
import { ITopic } from "aws-cdk-lib/aws-sns"; import { MetricFactory } from "../../common"; export interface SnsTopicMetricFactoryProps { readonly topic: ITopic; } export declare class SnsTopicMetricFactory { protected readonly metricFactory: MetricFactory; protected readonly topic: ITopic; constructor(metricFactory: MetricFactory, props: SnsTopicMetricFactoryProps); metricIncomingMessageCount(): import("../../common").MetricWithAlarmSupport; metricOutgoingMessageCount(): import("../../common").MetricWithAlarmSupport; metricAverageMessageSizeInBytes(): import("../../common").MetricWithAlarmSupport; metricNumberOfNotificationsFailed(): import("../../common").MetricWithAlarmSupport; }