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

CapacityForecast

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

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

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

§Properties

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

The timestamps for the data points, in UTC format.

§
Values: number[]
[src]

The values of the data points.