import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteBudgetCommand}. */ export interface DeleteBudgetCommandInput extends DeleteBudgetRequest { } /** * @public * * The output of {@link DeleteBudgetCommand}. */ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __MetadataBearer { } declare const DeleteBudgetCommand_base: { new (input: DeleteBudgetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteBudgetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a budget. You can delete your budget at any time.

* *

Deleting a budget also deletes the notifications and subscribers that are associated with that budget.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BudgetsClient, DeleteBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import * // const { BudgetsClient, DeleteBudgetCommand } = require("@aws-sdk/client-budgets"); // CommonJS import * // import type { BudgetsClientConfig } from "@aws-sdk/client-budgets"; * const config = {}; // type is BudgetsClientConfig * const client = new BudgetsClient(config); * const input = { // DeleteBudgetRequest * AccountId: "STRING_VALUE", // required * BudgetName: "STRING_VALUE", // required * }; * const command = new DeleteBudgetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteBudgetCommandInput - {@link DeleteBudgetCommandInput} * @returns {@link DeleteBudgetCommandOutput} * @see {@link DeleteBudgetCommandInput} for command's `input` shape. * @see {@link DeleteBudgetCommandOutput} for command's `response` shape. * @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You are not authorized to use this operation with the given parameters.

* * @throws {@link InternalErrorException} (server fault) *

An error on the server occurred during the processing of your request. Try again later.

* * @throws {@link InvalidParameterException} (client fault) *

An error on the client occurred. Typically, the cause is an invalid input value.

* * @throws {@link NotFoundException} (client fault) *

We can’t locate the resource that you specified.

* * @throws {@link ThrottlingException} (client fault) *

The number of API requests has exceeded the maximum allowed API request throttling limit * for the account.

* * @throws {@link BudgetsServiceException} *

Base exception class for all service exceptions from Budgets service.

* * * @public */ export declare class DeleteBudgetCommand extends DeleteBudgetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteBudgetRequest; output: {}; }; sdk: { input: DeleteBudgetCommandInput; output: DeleteBudgetCommandOutput; }; }; }