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

LoadForecast

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

A GetPredictiveScalingForecast call returns the load forecast for a predictive scaling policy. This structure includes the data points for that load forecast, along with the timestamps of those data points and the metric specification.

interface LoadForecast {
Timestamps: (Date | number)[];
Values: number[];
}

§Properties

§

The metric specification for the load forecast.

§
Timestamps: (Date | number)[]
[src]

The timestamps for the data points, in UTC format.

§
Values: number[]
[src]

The values of the data points.