Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DimensionKeyDescription

import type { DimensionKeyDescription } from "https://aws-api.deno.dev/v0.4/services/pi.ts?docs=full";

An object that includes the requested dimension key values and aggregated metric values within a dimension group.

interface DimensionKeyDescription {
AdditionalMetrics?: {
[key: string]: number | null | undefined;
}
| null;
Dimensions?: {
[key: string]: string | null | undefined;
}
| null;
Partitions?: number[] | null;
Total?: number | null;
}

§Properties

§
AdditionalMetrics?: {
[key: string]: number | null | undefined;
}
| null
[src]

A map that contains the value for each additional metric.

§
Dimensions?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of name-value pairs for the dimensions in the group.

§
Partitions?: number[] | null
[src]

If PartitionBy was specified, PartitionKeys contains the dimensions that were.

§
Total?: number | null
[src]

The aggregated metric value for the dimensions, over the requested time range.