import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteConfigurationRequest, DeleteConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteConfigurationCommand}. */ export interface DeleteConfigurationCommandInput extends DeleteConfigurationRequest { } /** * @public * * The output of {@link DeleteConfigurationCommand}. */ export interface DeleteConfigurationCommandOutput extends DeleteConfigurationResponse, __MetadataBearer { } declare const DeleteConfigurationCommand_base: { new (input: DeleteConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified configuration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MqClient, DeleteConfigurationCommand } from "@aws-sdk/client-mq"; // ES Modules import * // const { MqClient, DeleteConfigurationCommand } = require("@aws-sdk/client-mq"); // CommonJS import * // import type { MqClientConfig } from "@aws-sdk/client-mq"; * const config = {}; // type is MqClientConfig * const client = new MqClient(config); * const input = { // DeleteConfigurationRequest * ConfigurationId: "STRING_VALUE", // required * }; * const command = new DeleteConfigurationCommand(input); * const response = await client.send(command); * // { // DeleteConfigurationResponse * // ConfigurationId: "STRING_VALUE", * // }; * * ``` * * @param DeleteConfigurationCommandInput - {@link DeleteConfigurationCommandInput} * @returns {@link DeleteConfigurationCommandOutput} * @see {@link DeleteConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteConfigurationCommandOutput} for command's `response` shape. * @see {@link MqClientResolvedConfig | config} for MqClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

Returns information about an error.

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

Returns information about an error.

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

Returns information about an error.

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

Returns information about an error.

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

Returns information about an error.

* * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* * * @public */ export declare class DeleteConfigurationCommand extends DeleteConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteConfigurationRequest; output: DeleteConfigurationResponse; }; sdk: { input: DeleteConfigurationCommandInput; output: DeleteConfigurationCommandOutput; }; }; }