aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
126 lines (125 loc) • 4.81 kB
TypeScript
import * as cw from "../../aws-cloudwatch";
declare module "./topic-base" {
interface ITopic {
/**
* Return the given named metric for this Topic
*/
metric(metricName: string, props?: cw.MetricOptions): cw.Metric;
/**
* Metric for the size of messages published through this topic
*
* Average over 5 minutes
*/
metricPublishSize(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages published to your Amazon SNS topics.
*
* Sum over 5 minutes
*/
metricNumberOfMessagesPublished(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages successfully delivered from your Amazon SNS topics to subscribing endpoints.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsDelivered(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that Amazon SNS failed to deliver.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFailed(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOut(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies because the messages have no attributes.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOutNoMessageAttributes(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies because the messages' attributes are invalid
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOutInvalidAttributes(props?: cw.MetricOptions): cw.Metric;
/**
* The charges you have accrued since the start of the current calendar month for sending SMS messages.
*
* Maximum over 5 minutes
*/
metricSMSMonthToDateSpentUSD(props?: cw.MetricOptions): cw.Metric;
/**
* The rate of successful SMS message deliveries.
*
* Sum over 5 minutes
*/
metricSMSSuccessRate(props?: cw.MetricOptions): cw.Metric;
}
}
declare module "./topic-base" {
interface TopicBase {
/**
* Return the given named metric for this Topic
*/
metric(metricName: string, props?: cw.MetricOptions): cw.Metric;
/**
* Metric for the size of messages published through this topic
*
* Average over 5 minutes
*/
metricPublishSize(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages published to your Amazon SNS topics.
*
* Sum over 5 minutes
*/
metricNumberOfMessagesPublished(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages successfully delivered from your Amazon SNS topics to subscribing endpoints.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsDelivered(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that Amazon SNS failed to deliver.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFailed(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOut(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies because the messages have no attributes.
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOutNoMessageAttributes(props?: cw.MetricOptions): cw.Metric;
/**
* The number of messages that were rejected by subscription filter policies because the messages' attributes are invalid
*
* Sum over 5 minutes
*/
metricNumberOfNotificationsFilteredOutInvalidAttributes(props?: cw.MetricOptions): cw.Metric;
/**
* The charges you have accrued since the start of the current calendar month for sending SMS messages.
*
* Maximum over 5 minutes
*/
metricSMSMonthToDateSpentUSD(props?: cw.MetricOptions): cw.Metric;
/**
* The rate of successful SMS message deliveries.
*
* Sum over 5 minutes
*/
metricSMSSuccessRate(props?: cw.MetricOptions): cw.Metric;
}
}