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

Add or updates the evaluations for process checks. * This API checks if the rule is a process check when the name of the Config rule is provided.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, PutExternalEvaluationCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, PutExternalEvaluationCommand } = 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 = { // PutExternalEvaluationRequest * ConfigRuleName: "STRING_VALUE", // required * ExternalEvaluation: { // ExternalEvaluation * ComplianceResourceType: "STRING_VALUE", // required * ComplianceResourceId: "STRING_VALUE", // required * ComplianceType: "COMPLIANT" || "NON_COMPLIANT" || "NOT_APPLICABLE" || "INSUFFICIENT_DATA", // required * Annotation: "STRING_VALUE", * OrderingTimestamp: new Date("TIMESTAMP"), // required * }, * }; * const command = new PutExternalEvaluationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param PutExternalEvaluationCommandInput - {@link PutExternalEvaluationCommandInput} * @returns {@link PutExternalEvaluationCommandOutput} * @see {@link PutExternalEvaluationCommandInput} for command's `input` shape. * @see {@link PutExternalEvaluationCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link InvalidParameterValueException} (client fault) *

One or more of the specified parameters are not valid. Verify * that your parameters are valid and try again.

* * @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 ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class PutExternalEvaluationCommand extends PutExternalEvaluationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: PutExternalEvaluationRequest; output: {}; }; sdk: { input: PutExternalEvaluationCommandInput; output: PutExternalEvaluationCommandOutput; }; }; }