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

Adds a new participant into an on-going chat contact or webRTC call. For more information, see Customize chat flow experiences by * integrating custom participants or Enable multi-user web, in-app, and video * calling.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, CreateParticipantCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, CreateParticipantCommand } = 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 = { // CreateParticipantRequest * InstanceId: "STRING_VALUE", // required * ContactId: "STRING_VALUE", // required * ClientToken: "STRING_VALUE", * ParticipantDetails: { // ParticipantDetailsToAdd * ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR", * DisplayName: "STRING_VALUE", * ParticipantCapabilities: { // ParticipantCapabilities * Video: "SEND", * ScreenShare: "SEND", * }, * }, * }; * const command = new CreateParticipantCommand(input); * const response = await client.send(command); * // { // CreateParticipantResponse * // ParticipantCredentials: { // ParticipantTokenCredentials * // ParticipantToken: "STRING_VALUE", * // Expiry: "STRING_VALUE", * // }, * // ParticipantId: "STRING_VALUE", * // }; * * ``` * * @param CreateParticipantCommandInput - {@link CreateParticipantCommandInput} * @returns {@link CreateParticipantCommandOutput} * @see {@link CreateParticipantCommandInput} for command's `input` shape. * @see {@link CreateParticipantCommandOutput} for command's `response` shape. * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Operation cannot be performed at this time as there is a conflict with another operation or contact * state.

* * @throws {@link InternalServiceException} (server fault) *

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

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

The request is not valid.

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

The specified resource was not found.

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

The service quota has been exceeded.

* * @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 CreateParticipantCommand extends CreateParticipantCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateParticipantRequest; output: CreateParticipantResponse; }; sdk: { input: CreateParticipantCommandInput; output: CreateParticipantCommandOutput; }; }; }