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 { DeleteRemediationExceptionsRequest, DeleteRemediationExceptionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteRemediationExceptionsCommand}. */ export interface DeleteRemediationExceptionsCommandInput extends DeleteRemediationExceptionsRequest { } /** * @public * * The output of {@link DeleteRemediationExceptionsCommand}. */ export interface DeleteRemediationExceptionsCommandOutput extends DeleteRemediationExceptionsResponse, __MetadataBearer { } declare const DeleteRemediationExceptionsCommand_base: { new (input: DeleteRemediationExceptionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteRemediationExceptionsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes one or more remediation exceptions mentioned in the resource keys.

* *

Config generates a remediation exception when a problem occurs executing a remediation action to a specific resource. * Remediation exceptions blocks auto-remediation until the exception is cleared.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DeleteRemediationExceptionsCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeleteRemediationExceptionsCommand } = 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 = { // DeleteRemediationExceptionsRequest * ConfigRuleName: "STRING_VALUE", // required * ResourceKeys: [ // RemediationExceptionResourceKeys // required * { // RemediationExceptionResourceKey * ResourceType: "STRING_VALUE", * ResourceId: "STRING_VALUE", * }, * ], * }; * const command = new DeleteRemediationExceptionsCommand(input); * const response = await client.send(command); * // { // DeleteRemediationExceptionsResponse * // FailedBatches: [ // FailedDeleteRemediationExceptionsBatches * // { // FailedDeleteRemediationExceptionsBatch * // FailureMessage: "STRING_VALUE", * // FailedItems: [ // RemediationExceptionResourceKeys * // { // RemediationExceptionResourceKey * // ResourceType: "STRING_VALUE", * // ResourceId: "STRING_VALUE", * // }, * // ], * // }, * // ], * // }; * * ``` * * @param DeleteRemediationExceptionsCommandInput - {@link DeleteRemediationExceptionsCommandInput} * @returns {@link DeleteRemediationExceptionsCommandOutput} * @see {@link DeleteRemediationExceptionsCommandInput} for command's `input` shape. * @see {@link DeleteRemediationExceptionsCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link NoSuchRemediationExceptionException} (client fault) *

You tried to delete a remediation exception that does not exist.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeleteRemediationExceptionsCommand extends DeleteRemediationExceptionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRemediationExceptionsRequest; output: DeleteRemediationExceptionsResponse; }; sdk: { input: DeleteRemediationExceptionsCommandInput; output: DeleteRemediationExceptionsCommandOutput; }; }; }