import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import type { DeletePendingAggregationRequestRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeletePendingAggregationRequestCommand}. */ export interface DeletePendingAggregationRequestCommandInput extends DeletePendingAggregationRequestRequest { } /** * @public * * The output of {@link DeletePendingAggregationRequestCommand}. */ export interface DeletePendingAggregationRequestCommandOutput extends __MetadataBearer { } declare const DeletePendingAggregationRequestCommand_base: { new (input: DeletePendingAggregationRequestCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeletePendingAggregationRequestCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes pending authorization requests for a specified * aggregator account in a specified region.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DeletePendingAggregationRequestCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeletePendingAggregationRequestCommand } = require("@aws-sdk/client-config-service"); // CommonJS import * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service"; * const config = {}; // type is ConfigServiceClientConfig * const client = new ConfigServiceClient(config); * const input = { // DeletePendingAggregationRequestRequest * RequesterAccountId: "STRING_VALUE", // required * RequesterAwsRegion: "STRING_VALUE", // required * }; * const command = new DeletePendingAggregationRequestCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeletePendingAggregationRequestCommandInput - {@link DeletePendingAggregationRequestCommandInput} * @returns {@link DeletePendingAggregationRequestCommandOutput} * @see {@link DeletePendingAggregationRequestCommandInput} for command's `input` shape. * @see {@link DeletePendingAggregationRequestCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link InvalidParameterValueException} (client fault) *

One or more of the specified parameters are not valid. Verify * that your parameters are valid and try again.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeletePendingAggregationRequestCommand extends DeletePendingAggregationRequestCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeletePendingAggregationRequestRequest; output: {}; }; sdk: { input: DeletePendingAggregationRequestCommandInput; output: DeletePendingAggregationRequestCommandOutput; }; }; }