import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import type { ListContactEvaluationsRequest, ListContactEvaluationsResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListContactEvaluationsCommand}. */ export interface ListContactEvaluationsCommandInput extends ListContactEvaluationsRequest { } /** * @public * * The output of {@link ListContactEvaluationsCommand}. */ export interface ListContactEvaluationsCommandOutput extends ListContactEvaluationsResponse, __MetadataBearer { } declare const ListContactEvaluationsCommand_base: { new (input: ListContactEvaluationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListContactEvaluationsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists contact evaluations in the specified Amazon Connect instance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, ListContactEvaluationsCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, ListContactEvaluationsCommand } = require("@aws-sdk/client-connect"); // CommonJS import * // import type { ConnectClientConfig } from "@aws-sdk/client-connect"; * const config = {}; // type is ConnectClientConfig * const client = new ConnectClient(config); * const input = { // ListContactEvaluationsRequest * InstanceId: "STRING_VALUE", // required * ContactId: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * }; * const command = new ListContactEvaluationsCommand(input); * const response = await client.send(command); * // { // ListContactEvaluationsResponse * // EvaluationSummaryList: [ // EvaluationSummaryList // required * // { // EvaluationSummary * // EvaluationId: "STRING_VALUE", // required * // EvaluationArn: "STRING_VALUE", // required * // EvaluationFormTitle: "STRING_VALUE", // required * // EvaluationFormId: "STRING_VALUE", // required * // CalibrationSessionId: "STRING_VALUE", * // Status: "DRAFT" || "SUBMITTED" || "REVIEW_REQUESTED" || "UNDER_REVIEW", // required * // AutoEvaluationEnabled: true || false, * // AutoEvaluationStatus: "IN_PROGRESS" || "FAILED" || "SUCCEEDED", * // EvaluatorArn: "STRING_VALUE", // required * // Score: { // EvaluationScore * // Percentage: Number("double"), * // NotApplicable: true || false, * // AutomaticFail: true || false, * // AppliedWeight: Number("double"), * // }, * // Acknowledgement: { // EvaluationAcknowledgementSummary * // AcknowledgedTime: new Date("TIMESTAMP"), * // AcknowledgedBy: "STRING_VALUE", * // AcknowledgerComment: "STRING_VALUE", * // }, * // EvaluationType: "STANDARD" || "CALIBRATION", * // CreatedTime: new Date("TIMESTAMP"), // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // ContactParticipant: { // EvaluationContactParticipant * // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT" || "CUSTOMER", * // ContactParticipantId: "STRING_VALUE", * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListContactEvaluationsCommandInput - {@link ListContactEvaluationsCommandInput} * @returns {@link ListContactEvaluationsCommandOutput} * @see {@link ListContactEvaluationsCommandInput} for command's `input` shape. * @see {@link ListContactEvaluationsCommandOutput} for command's `response` shape. * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

Request processing failed because of an error or failure with the service.

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

One or more of the specified parameters are not valid.

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

The specified resource was not found.

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

The throttling limit has been exceeded.

* * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* * * @public */ export declare class ListContactEvaluationsCommand extends ListContactEvaluationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListContactEvaluationsRequest; output: ListContactEvaluationsResponse; }; sdk: { input: ListContactEvaluationsCommandInput; output: ListContactEvaluationsCommandOutput; }; }; }