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

ResultByTime

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

The result that's associated with a time period.

interface ResultByTime {
Estimated?: boolean | null;
Groups?: Group[] | null;
TimePeriod?: DateInterval | null;
Total?: {
[key: string]: MetricValue | null | undefined;
}
| null;
}

§Properties

§
Estimated?: boolean | null
[src]

Determines whether the result is estimated.

§
Groups?: Group[] | null
[src]

The groups that this time period includes.

§
TimePeriod?: DateInterval | null
[src]

The time period that the result covers.

§
Total?: {
[key: string]: MetricValue | null | undefined;
}
| null
[src]

The total amount of cost or usage accrued during the time period.