aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
14 lines (13 loc) • 360 B
TypeScript
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class KMSMetrics {
static secondsUntilKeyMaterialExpirationAverage(this: void, dimensions: {
KeyId: string;
}): MetricWithDims<{
KeyId: string;
}>;
}