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

CalculatedSpend

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

The spend objects that are associated with this budget. The actualSpend tracks how much you've used, cost, usage, RI units, or Savings Plans units and the forecastedSpend tracks how much you are predicted to spend based on your historical usage profile.

For example, if it is the 20th of the month and you have spent 50 dollars on Amazon EC2, your actualSpend is 50 USD, and your forecastedSpend is 75 USD.

interface CalculatedSpend {
ActualSpend: Spend;
ForecastedSpend?: Spend | null;
}

§Properties

§
ActualSpend: Spend
[src]

The amount of cost, usage, RI units, or Savings Plans units that you have used.

§
ForecastedSpend?: Spend | null
[src]

The amount of cost, usage, RI units, or Savings Plans units that you are forecasted to use.