Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-mediapackage/lib/mediapackage-canned-metrics.generated.d.ts
2026-05-06 18:55:16 -05:00

24 lines
635 B
TypeScript

export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class MediaPackageMetrics {
static egressRequestCountSum(this: void, dimensions: {
Channel: string;
}): MetricWithDims<{
Channel: string;
}>;
static egressResponseTimeAverage(this: void, dimensions: {
Channel: string;
}): MetricWithDims<{
Channel: string;
}>;
static egressBytesSum(this: void, dimensions: {
Channel: string;
}): MetricWithDims<{
Channel: string;
}>;
}