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

Datapoint

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

Encapsulates the statistical data that CloudWatch computes from metric data.

interface Datapoint {
Average?: number | null;
ExtendedStatistics: {
[key: string]: number | null | undefined;
}
;
Maximum?: number | null;
Minimum?: number | null;
SampleCount?: number | null;
Sum?: number | null;
Timestamp?: Date | number | null;
Unit?: StandardUnit | null;
}

§Properties

§
Average?: number | null
[src]

The average of the metric values that correspond to the data point.

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

The percentile statistic for the data point.

§
Maximum?: number | null
[src]

The maximum metric value for the data point.

§
Minimum?: number | null
[src]

The minimum metric value for the data point.

§
SampleCount?: number | null
[src]

The number of metric values that contributed to the aggregate value of this data point.

§
Sum?: number | null
[src]

The sum of the metric values for the data point.

§
Timestamp?: Date | number | null
[src]

The time stamp used for the data point.

§
Unit?: StandardUnit | null
[src]

The standard unit for the data point.