import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeNotificationsForBudgetRequest, DescribeNotificationsForBudgetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeNotificationsForBudgetCommand}. */ export interface DescribeNotificationsForBudgetCommandInput extends DescribeNotificationsForBudgetRequest { } /** * @public * * The output of {@link DescribeNotificationsForBudgetCommand}. */ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNotificationsForBudgetResponse, __MetadataBearer { } declare const DescribeNotificationsForBudgetCommand_base: { new (input: DescribeNotificationsForBudgetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeNotificationsForBudgetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the notifications that are associated with a budget.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BudgetsClient, DescribeNotificationsForBudgetCommand } from "@aws-sdk/client-budgets"; // ES Modules import * // const { BudgetsClient, DescribeNotificationsForBudgetCommand } = 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 = { // DescribeNotificationsForBudgetRequest * AccountId: "STRING_VALUE", // required * BudgetName: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeNotificationsForBudgetCommand(input); * const response = await client.send(command); * // { // DescribeNotificationsForBudgetResponse * // Notifications: [ // Notifications * // { // Notification * // NotificationType: "ACTUAL" || "FORECASTED", // required * // ComparisonOperator: "GREATER_THAN" || "LESS_THAN" || "EQUAL_TO", // required * // Threshold: Number("double"), // required * // ThresholdType: "PERCENTAGE" || "ABSOLUTE_VALUE", * // NotificationState: "OK" || "ALARM", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeNotificationsForBudgetCommandInput - {@link DescribeNotificationsForBudgetCommandInput} * @returns {@link DescribeNotificationsForBudgetCommandOutput} * @see {@link DescribeNotificationsForBudgetCommandInput} for command's `input` shape. * @see {@link DescribeNotificationsForBudgetCommandOutput} 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 ExpiredNextTokenException} (client fault) *

The pagination token expired.

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

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

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

The pagination token is invalid.

* * @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 DescribeNotificationsForBudgetCommand extends DescribeNotificationsForBudgetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeNotificationsForBudgetRequest; output: DescribeNotificationsForBudgetResponse; }; sdk: { input: DescribeNotificationsForBudgetCommandInput; output: DescribeNotificationsForBudgetCommandOutput; }; }; }