import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteQueuedSavingsPlanRequest, DeleteQueuedSavingsPlanResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteQueuedSavingsPlanCommand}. */ export interface DeleteQueuedSavingsPlanCommandInput extends DeleteQueuedSavingsPlanRequest { } /** * @public * * The output of {@link DeleteQueuedSavingsPlanCommand}. */ export interface DeleteQueuedSavingsPlanCommandOutput extends DeleteQueuedSavingsPlanResponse, __MetadataBearer { } declare const DeleteQueuedSavingsPlanCommand_base: { new (input: DeleteQueuedSavingsPlanCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteQueuedSavingsPlanCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the queued purchase for the specified Savings Plan.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SavingsplansClient, DeleteQueuedSavingsPlanCommand } from "@aws-sdk/client-savingsplans"; // ES Modules import * // const { SavingsplansClient, DeleteQueuedSavingsPlanCommand } = require("@aws-sdk/client-savingsplans"); // CommonJS import * // import type { SavingsplansClientConfig } from "@aws-sdk/client-savingsplans"; * const config = {}; // type is SavingsplansClientConfig * const client = new SavingsplansClient(config); * const input = { // DeleteQueuedSavingsPlanRequest * savingsPlanId: "STRING_VALUE", // required * }; * const command = new DeleteQueuedSavingsPlanCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteQueuedSavingsPlanCommandInput - {@link DeleteQueuedSavingsPlanCommandInput} * @returns {@link DeleteQueuedSavingsPlanCommandOutput} * @see {@link DeleteQueuedSavingsPlanCommandInput} for command's `input` shape. * @see {@link DeleteQueuedSavingsPlanCommandOutput} for command's `response` shape. * @see {@link SavingsplansClientResolvedConfig | config} for SavingsplansClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An unexpected error occurred.

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

The specified resource was not found.

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

A service quota has been exceeded.

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

One of the input parameters is not valid.

* * @throws {@link SavingsplansServiceException} *

Base exception class for all service exceptions from Savingsplans service.

* * * @public */ export declare class DeleteQueuedSavingsPlanCommand extends DeleteQueuedSavingsPlanCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteQueuedSavingsPlanRequest; output: {}; }; sdk: { input: DeleteQueuedSavingsPlanCommandInput; output: DeleteQueuedSavingsPlanCommandOutput; }; }; }