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

MetricPoint

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

Indicates whether the network was healthy or degraded at a particular point. The value is aggregated from the startDate to the endDate. Currently only five_minutes is supported.

interface MetricPoint {
EndDate?: Date | number | null;
StartDate?: Date | number | null;
Status?: string | null;
Value?: number | null;
}

§Properties

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

The end date for the metric point. The ending time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-12T12:00:00.000Z.

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

The start date for the metric point. The starting date for the metric point. The starting time must be formatted as yyyy-mm-ddThh:mm:ss. For example, 2022-06-10T12:00:00.000Z.

§
Status?: string | null
[src]

The status of the metric point.

§
Value?: number | null
[src]