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

CreateBudgetRequest

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

Request of CreateBudget

interface CreateBudgetRequest {
AccountId: string;
Budget: Budget;
NotificationsWithSubscribers?: NotificationWithSubscribers[] | null;
}

§Properties

§
AccountId: string
[src]

The accountId that is associated with the budget.

§
Budget: Budget
[src]

The budget object that you want to create.

§
NotificationsWithSubscribers?: NotificationWithSubscribers[] | null
[src]

A notification that you want to associate with a budget. A budget can have up to five notifications, and each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and subscribers in your CreateBudget call, AWS creates the notifications and subscribers for you.