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