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

Records the configuration state for a custom resource that has been deleted. This API records a new ConfigurationItem with a ResourceDeleted status. You can retrieve the ConfigurationItems recorded for this resource in your Config History. *

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

There is no configuration recorder running.

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

The requested operation is not valid. You will see this exception if there are missing required fields or if the input value fails the validation.

*

For PutStoredQuery, one of the following errors:

* *

For DescribeConfigurationRecorders and DescribeConfigurationRecorderStatus, one of the following errors:

* *

For AssociateResourceTypes and DisassociateResourceTypes, one of the following errors:

* * * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeleteResourceConfigCommand extends DeleteResourceConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteResourceConfigRequest; output: {}; }; sdk: { input: DeleteResourceConfigCommandInput; output: DeleteResourceConfigCommandOutput; }; }; }