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

Deletes the specified configuration aggregator and the * aggregated data associated with the aggregator.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DeleteConfigurationAggregatorCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeleteConfigurationAggregatorCommand } = 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 = { // DeleteConfigurationAggregatorRequest * ConfigurationAggregatorName: "STRING_VALUE", // required * }; * const command = new DeleteConfigurationAggregatorCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteConfigurationAggregatorCommandInput - {@link DeleteConfigurationAggregatorCommandInput} * @returns {@link DeleteConfigurationAggregatorCommandOutput} * @see {@link DeleteConfigurationAggregatorCommandInput} for command's `input` shape. * @see {@link DeleteConfigurationAggregatorCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link NoSuchConfigurationAggregatorException} (client fault) *

You have specified a configuration aggregator that does not exist.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeleteConfigurationAggregatorCommand extends DeleteConfigurationAggregatorCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteConfigurationAggregatorRequest; output: {}; }; sdk: { input: DeleteConfigurationAggregatorCommandInput; output: DeleteConfigurationAggregatorCommandOutput; }; }; }