Back to Aws Sdk Js V3

@aws-sdk/client-connect

clients/client-connect/README.md

3.1043.0182.9 KB
Original Source
<!-- generated file, do not edit directly -->

@aws-sdk/client-connect

Description

AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native.

<ul> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect actions</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect data types</a> </p> </li> </ul> <p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can use an endpoint to connect programmatically to an Amazon Web Services service. For a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>.</p>

Installing

To install this package, use the CLI of your favorite package manager:

  • npm install @aws-sdk/client-connect
  • yarn add @aws-sdk/client-connect
  • pnpm add @aws-sdk/client-connect

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the ConnectClient and the commands you need, for example ListInstancesCommand:

js
// ES5 example
const { ConnectClient, ListInstancesCommand } = require("@aws-sdk/client-connect");
ts
// ES6+ example
import { ConnectClient, ListInstancesCommand } from "@aws-sdk/client-connect";

Usage

To send a request:

  • Instantiate a client with configuration (e.g. credentials, region).
  • Instantiate a command with input parameters.
  • Call the send operation on the client, providing the command object as input.
js
const client = new ConnectClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListInstancesCommand(params);

Async/await

We recommend using the await operator to wait for the promise returned by send operation as follows:

js
// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}

Promises

You can also use Promise chaining.

js
client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });

Aggregated client

The aggregated client class is exported from the same package, but without the "Client" suffix.

Connect extends ConnectClient and additionally supports all operations, waiters, and paginators as methods. This style may be familiar to you from the AWS SDK for JavaScript v2.

If you are bundling the AWS SDK, we recommend using only the bare-bones client (ConnectClient). More details are in the blog post on modular packages in AWS SDK for JavaScript.

ts
import { Connect } from "@aws-sdk/client-connect";

const client = new Connect({ region: "REGION" });

// async/await.
try {
  const data = await client.listInstances(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listInstances(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks (not recommended).
client.listInstances(params, (err, data) => {
  // process err and data.
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

js
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

See also docs/ERROR_HANDLING.

Getting Help

Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-connect package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

<details> <summary> ActivateEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateAnalyticsDataSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateApprovedOrigin </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateBot </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateContactWithUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateDefaultVocabulary </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateEmailAddressAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateInstanceStorageConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateLambdaFunction </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateLexBot </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociatePhoneNumberContactFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateQueueEmailAddresses </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateQueueQuickConnects </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateRoutingProfileQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateSecurityKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateSecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateTrafficDistributionGroupUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateUserProficiencies </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateWorkspace </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchAssociateAnalyticsDataSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchCreateDataTableValue </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchDeleteDataTableValue </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchDescribeDataTableValue </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchDisassociateAnalyticsDataSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetAttachedFileMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetFlowAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchPutContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchUpdateDataTableValue </summary>

Command API Reference / Input / Output

</details> <details> <summary> ClaimPhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> CompleteAttachedFileUpload </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateAgentStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContactFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContactFlowModule </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContactFlowModuleAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContactFlowModuleVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateContactFlowVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateDataTable </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateDataTableAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateEmailAddress </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateHoursOfOperation </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateHoursOfOperationOverride </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateInstance </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateIntegrationAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateNotification </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateParticipant </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreatePersistentContactAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreatePredefinedAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreatePrompt </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreatePushNotificationRegistration </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateQueue </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateQuickConnect </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateRoutingProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateSecurityProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateTaskTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateTestCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateTrafficDistributionGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateUseCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateUserHierarchyGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateView </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateViewVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateVocabulary </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateWorkspace </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateWorkspacePage </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeactivateEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteAttachedFile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactEvaluation </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactFlowModule </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactFlowModuleAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactFlowModuleVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteContactFlowVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteDataTable </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteDataTableAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEmailAddress </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteHoursOfOperation </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteHoursOfOperationOverride </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteInstance </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteIntegrationAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteNotification </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeletePredefinedAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeletePrompt </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeletePushNotificationRegistration </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteQueue </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteQuickConnect </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteRoutingProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteSecurityProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteTaskTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteTestCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteTrafficDistributionGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteUseCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteUserHierarchyGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteView </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteViewVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteVocabulary </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteWorkspace </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteWorkspaceMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteWorkspacePage </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeAgentStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeAttachedFilesConfiguration </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeAuthenticationProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeContactEvaluation </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeContactFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeContactFlowModule </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeContactFlowModuleAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeDataTable </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeDataTableAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeEmailAddress </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeHoursOfOperation </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeHoursOfOperationOverride </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeInstance </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeInstanceAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeInstanceStorageConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeNotification </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribePhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribePredefinedAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribePrompt </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeQueue </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeQuickConnect </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeRoutingProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeSecurityProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeTestCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeTrafficDistributionGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeUserHierarchyGroup </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeUserHierarchyStructure </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeView </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeVocabulary </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeWorkspace </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateAnalyticsDataSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateApprovedOrigin </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateBot </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateEmailAddressAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateInstanceStorageConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateLambdaFunction </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateLexBot </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociatePhoneNumberContactFlow </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateQueueEmailAddresses </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateQueueQuickConnects </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateRoutingProfileQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateSecurityKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateSecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateTrafficDistributionGroupUser </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateUserProficiencies </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateWorkspace </summary>

Command API Reference / Input / Output

</details> <details> <summary> DismissUserContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> EvaluateDataTableValues </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetAttachedFile </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetContactAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetContactMetrics </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCurrentMetricData </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCurrentUserData </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEffectiveHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFederationToken </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFlowAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMetricData </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMetricDataV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetPromptFile </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetTaskTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetTestCaseExecutionSummary </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetTrafficDistribution </summary>

Command API Reference / Input / Output

</details> <details> <summary> ImportPhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> ImportWorkspaceMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAgentStatuses </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAnalyticsDataAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAnalyticsDataLakeDataSets </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListApprovedOrigins </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAssociatedContacts </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAttachedFilesConfigurations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAuthenticationProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListBots </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListChildHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactEvaluations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactFlowModuleAliases </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactFlowModules </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactFlowModuleVersions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactFlows </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactFlowVersions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListContactReferences </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDataTableAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDataTablePrimaryValues </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDataTables </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDataTableValues </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDefaultVocabularies </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListEntitySecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListEvaluationForms </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListEvaluationFormVersions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListFlowAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListHoursOfOperationOverrides </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListInstanceAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListInstances </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListInstanceStorageConfigs </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListIntegrationAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListLambdaFunctions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListLexBots </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListNotifications </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListPhoneNumbers </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListPhoneNumbersV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListPredefinedAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListPrompts </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListQueueEmailAddresses </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListQueueQuickConnects </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListQuickConnects </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListRealtimeContactAnalysisSegmentsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListRoutingProfileManualAssignmentQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListRoutingProfileQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListRoutingProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityKeys </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityProfileApplications </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityProfileFlowModules </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityProfilePermissions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTagsForResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTaskTemplates </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTestCaseExecutionRecords </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTestCaseExecutions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTestCases </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTrafficDistributionGroups </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTrafficDistributionGroupUsers </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListUseCases </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListUserHierarchyGroups </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListUserNotifications </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListUserProficiencies </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListUsers </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListViews </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListViewVersions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListWorkspaceMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListWorkspacePages </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListWorkspaces </summary>

Command API Reference / Input / Output

</details> <details> <summary> MonitorContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> PauseContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutUserStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> ReleasePhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> ReplicateInstance </summary>

Command API Reference / Input / Output

</details> <details> <summary> ResumeContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> ResumeContactRecording </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchAgentStatuses </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchAvailablePhoneNumbers </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchContactEvaluations </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchContactFlowModules </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchContactFlows </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchContacts </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchDataTables </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchEmailAddresses </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchEvaluationForms </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchHoursOfOperationOverrides </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchHoursOfOperations </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchNotifications </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchPredefinedAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchPrompts </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchQuickConnects </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchResourceTags </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchRoutingProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchSecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchTestCases </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchUserHierarchyGroups </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchUsers </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchViews </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchVocabularies </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchWorkspaceAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> SearchWorkspaces </summary>

Command API Reference / Input / Output

</details> <details> <summary> SendChatIntegrationEvent </summary>

Command API Reference / Input / Output

</details> <details> <summary> SendOutboundEmail </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartAttachedFileUpload </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartChatContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartContactEvaluation </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartContactMediaProcessing </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartContactRecording </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartContactStreaming </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartEmailContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartOutboundChatContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartOutboundEmailContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartOutboundVoiceContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartScreenSharing </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartTaskContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartTestCaseExecution </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartWebRTCContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopContactMediaProcessing </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopContactRecording </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopContactStreaming </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopTestCaseExecution </summary>

Command API Reference / Input / Output

</details> <details> <summary> SubmitContactEvaluation </summary>

Command API Reference / Input / Output

</details> <details> <summary> SuspendContactRecording </summary>

Command API Reference / Input / Output

</details> <details> <summary> TagContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> TagResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> TransferContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> UntagContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> UntagResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateAgentStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateAttachedFilesConfiguration </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateAuthenticationProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContact </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactAttributes </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactEvaluation </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowContent </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowModuleAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowModuleContent </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowModuleMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactFlowName </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactRoutingData </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateContactSchedule </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateDataTableAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateDataTableMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateDataTablePrimaryValues </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateEmailAddressMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateEvaluationForm </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateHoursOfOperation </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateHoursOfOperationOverride </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateInstanceAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateInstanceStorageConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateNotificationContent </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateParticipantAuthentication </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateParticipantRoleConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdatePhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdatePhoneNumberMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdatePredefinedAttribute </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdatePrompt </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueHoursOfOperation </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueMaxContacts </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueName </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueOutboundCallerConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueOutboundEmailConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQueueStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQuickConnectConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateQuickConnectName </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRoutingProfileAgentAvailabilityTimer </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRoutingProfileConcurrency </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRoutingProfileDefaultOutboundQueue </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRoutingProfileName </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRoutingProfileQueues </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateSecurityProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateTaskTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateTestCase </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateTrafficDistribution </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserHierarchy </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserHierarchyGroupName </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserHierarchyStructure </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserIdentityInfo </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserNotificationStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserPhoneConfig </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserProficiencies </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserRoutingProfile </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateUserSecurityProfiles </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateViewContent </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateViewMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateWorkspaceMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateWorkspacePage </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateWorkspaceTheme </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateWorkspaceVisibility </summary>

Command API Reference / Input / Output

</details>