aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
29 lines (28 loc) • 711 B
TypeScript
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class IoTMetrics {
static topicMatchSum(dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static parseErrorSum(dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static ruleMessageThrottledSum(dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static ruleNotFoundSum(dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
}