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

ForecastResult

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

The forecast that's created for your query.

interface ForecastResult {
MeanValue?: string | null;
PredictionIntervalLowerBound?: string | null;
PredictionIntervalUpperBound?: string | null;
TimePeriod?: DateInterval | null;
}

§Properties

§
MeanValue?: string | null
[src]

The mean value of the forecast.

§
PredictionIntervalLowerBound?: string | null
[src]

The lower limit for the prediction interval.

§
PredictionIntervalUpperBound?: string | null
[src]

The upper limit for the prediction interval.

§
TimePeriod?: DateInterval | null
[src]

The period of time that the forecast covers.