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

Deletes the evaluation results for the specified Config * rule. You can specify one Config rule per request. After you * delete the evaluation results, you can call the StartConfigRulesEvaluation API to start evaluating * your Amazon Web Services resources against the rule.

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

The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

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

You see this exception in the following cases:

* * * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeleteEvaluationResultsCommand extends DeleteEvaluationResultsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteEvaluationResultsRequest; output: {}; }; sdk: { input: DeleteEvaluationResultsCommandInput; output: DeleteEvaluationResultsCommandOutput; }; }; }