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 { DeleteAggregationAuthorizationRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteAggregationAuthorizationCommand}. */ export interface DeleteAggregationAuthorizationCommandInput extends DeleteAggregationAuthorizationRequest { } /** * @public * * The output of {@link DeleteAggregationAuthorizationCommand}. */ export interface DeleteAggregationAuthorizationCommandOutput extends __MetadataBearer { } declare const DeleteAggregationAuthorizationCommand_base: { new (input: DeleteAggregationAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteAggregationAuthorizationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the authorization granted to the specified * configuration 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, DeleteAggregationAuthorizationCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeleteAggregationAuthorizationCommand } = 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 = { // DeleteAggregationAuthorizationRequest * AuthorizedAccountId: "STRING_VALUE", // required * AuthorizedAwsRegion: "STRING_VALUE", // required * }; * const command = new DeleteAggregationAuthorizationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteAggregationAuthorizationCommandInput - {@link DeleteAggregationAuthorizationCommandInput} * @returns {@link DeleteAggregationAuthorizationCommandOutput} * @see {@link DeleteAggregationAuthorizationCommandInput} for command's `input` shape. * @see {@link DeleteAggregationAuthorizationCommandOutput} 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 DeleteAggregationAuthorizationCommand extends DeleteAggregationAuthorizationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAggregationAuthorizationRequest; output: {}; }; sdk: { input: DeleteAggregationAuthorizationCommandInput; output: DeleteAggregationAuthorizationCommandOutput; }; }; }