UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

24 lines (23 loc) 670 B
export interface MetricWithDims<D> { readonly namespace: string; readonly metricName: string; readonly statistic: string; readonly dimensionsMap: D; } export declare class Route53ResolverMetrics { static inboundQueryVolumeSum(this: void, dimensions: { EndpointId: string; }): MetricWithDims<{ EndpointId: string; }>; static outboundQueryVolumeSum(this: void, dimensions: { EndpointId: string; }): MetricWithDims<{ EndpointId: string; }>; static outboundQueryAggregateVolumeSum(this: void, dimensions: { EndpointId: string; }): MetricWithDims<{ EndpointId: string; }>; }