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

19 lines
475 B
TypeScript

export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class TransferMetrics {
static bytesInSum(this: void, dimensions: {
ServerId: string;
}): MetricWithDims<{
ServerId: string;
}>;
static bytesOutSum(this: void, dimensions: {
ServerId: string;
}): MetricWithDims<{
ServerId: string;
}>;
}