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/mwaa.ts?docs=full";

Internal only. Represents a set of statistics that describe a specific metric. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.

interface StatisticSet {
Maximum?: number | null;
Minimum?: number | null;
SampleCount?: number | null;
Sum?: number | null;
}

§Properties

§
Maximum?: number | null
[src]

Internal only. The maximum value of the sample set.

§
Minimum?: number | null
[src]

Internal only. The minimum value of the sample set.

§
SampleCount?: number | null
[src]

Internal only. The number of samples used for the statistic set.

§
Sum?: number | null
[src]

Internal only. The sum of values for the sample set.