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

StatisticSet

import type { StatisticSet } from "https://aws-api.deno.dev/v0.3/services/cloudwatch.ts?docs=full";

Represents a set of statistics that describes a specific metric.

interface StatisticSet {
Maximum: number;
Minimum: number;
SampleCount: number;
Sum: number;
}

§Properties

§
Maximum: number
[src]

The maximum value of the sample set.

§
Minimum: number
[src]

The minimum value of the sample set.

§
SampleCount: number
[src]

The number of samples used for the statistic set.

§
Sum: number
[src]

The sum of values for the sample set.