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

Represents a single value in the forecast data used for predictive scaling.

interface Datapoint {
Timestamp?: Date | number | null;
Value?: number | null;
}

§Properties

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

The time stamp for the data point in UTC format.

§
Value?: number | null
[src]

The value of the data point.