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

DateInterval

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

The time period of the request.

interface DateInterval {
End: string;
Start: string;
}

§Properties

§
End: string
[src]

The end of the time period. The end date is exclusive. For example, if end is 2017-05-01, Amazon Web Services retrieves cost and usage data from the start date up to, but not including, 2017-05-01.

§
Start: string
[src]

The beginning of the time period. The start date is inclusive. For example, if start is 2017-01-01, Amazon Web Services retrieves cost and usage data starting at 2017-01-01 up to the end date. The start date must be equal to or no later than the current date to avoid a validation error.