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

BudgetedAndActualAmounts

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

The amount of cost or usage that you created the budget for, compared to your actual costs or usage.

interface BudgetedAndActualAmounts {
ActualAmount?: Spend | null;
BudgetedAmount?: Spend | null;
TimePeriod?: TimePeriod | null;
}

§Properties

§
ActualAmount?: Spend | null
[src]

Your actual costs or usage for a budget period.

§
BudgetedAmount?: Spend | null
[src]

The amount of cost or usage that you created the budget for.

§
TimePeriod?: TimePeriod | null
[src]

The time period covered by this budget comparison.