@aws-sdk/client-qconnect 3.461.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +545 -0
- package/dist-cjs/QConnect.js +93 -0
- package/dist-cjs/QConnectClient.js +43 -0
- package/dist-cjs/commands/CreateAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/CreateAssistantCommand.js +51 -0
- package/dist-cjs/commands/CreateContentCommand.js +52 -0
- package/dist-cjs/commands/CreateKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/CreateSessionCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssistantCommand.js +51 -0
- package/dist-cjs/commands/DeleteContentCommand.js +51 -0
- package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
- package/dist-cjs/commands/DeleteKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
- package/dist-cjs/commands/GetAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/GetAssistantCommand.js +51 -0
- package/dist-cjs/commands/GetContentCommand.js +52 -0
- package/dist-cjs/commands/GetContentSummaryCommand.js +51 -0
- package/dist-cjs/commands/GetImportJobCommand.js +52 -0
- package/dist-cjs/commands/GetKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/GetRecommendationsCommand.js +52 -0
- package/dist-cjs/commands/GetSessionCommand.js +51 -0
- package/dist-cjs/commands/ListAssistantAssociationsCommand.js +51 -0
- package/dist-cjs/commands/ListAssistantsCommand.js +51 -0
- package/dist-cjs/commands/ListContentsCommand.js +51 -0
- package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
- package/dist-cjs/commands/ListKnowledgeBasesCommand.js +51 -0
- package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
- package/dist-cjs/commands/NotifyRecommendationsReceivedCommand.js +51 -0
- package/dist-cjs/commands/QueryAssistantCommand.js +52 -0
- package/dist-cjs/commands/RemoveKnowledgeBaseTemplateUriCommand.js +51 -0
- package/dist-cjs/commands/SearchContentCommand.js +51 -0
- package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/SearchSessionsCommand.js +51 -0
- package/dist-cjs/commands/StartContentUploadCommand.js +52 -0
- package/dist-cjs/commands/StartImportJobCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +51 -0
- package/dist-cjs/commands/UntagResourceCommand.js +51 -0
- package/dist-cjs/commands/UpdateContentCommand.js +52 -0
- package/dist-cjs/commands/UpdateKnowledgeBaseTemplateUriCommand.js +51 -0
- package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/index.js +44 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/QConnectServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +559 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAssistantAssociationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListAssistantsPaginator.js +29 -0
- package/dist-cjs/pagination/ListContentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKnowledgeBasesPaginator.js +29 -0
- package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/QueryAssistantPaginator.js +29 -0
- package/dist-cjs/pagination/SearchContentPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/SearchSessionsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +14 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2993 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/QConnect.js +89 -0
- package/dist-es/QConnectClient.js +39 -0
- package/dist-es/commands/CreateAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/CreateAssistantCommand.js +47 -0
- package/dist-es/commands/CreateContentCommand.js +48 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
- package/dist-es/commands/CreateSessionCommand.js +47 -0
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/DeleteAssistantCommand.js +47 -0
- package/dist-es/commands/DeleteContentCommand.js +47 -0
- package/dist-es/commands/DeleteImportJobCommand.js +47 -0
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
- package/dist-es/commands/GetAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/GetAssistantCommand.js +47 -0
- package/dist-es/commands/GetContentCommand.js +48 -0
- package/dist-es/commands/GetContentSummaryCommand.js +47 -0
- package/dist-es/commands/GetImportJobCommand.js +48 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/GetQuickResponseCommand.js +48 -0
- package/dist-es/commands/GetRecommendationsCommand.js +48 -0
- package/dist-es/commands/GetSessionCommand.js +47 -0
- package/dist-es/commands/ListAssistantAssociationsCommand.js +47 -0
- package/dist-es/commands/ListAssistantsCommand.js +47 -0
- package/dist-es/commands/ListContentsCommand.js +47 -0
- package/dist-es/commands/ListImportJobsCommand.js +47 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +47 -0
- package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +47 -0
- package/dist-es/commands/QueryAssistantCommand.js +48 -0
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +47 -0
- package/dist-es/commands/SearchContentCommand.js +47 -0
- package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
- package/dist-es/commands/SearchSessionsCommand.js +47 -0
- package/dist-es/commands/StartContentUploadCommand.js +48 -0
- package/dist-es/commands/StartImportJobCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +47 -0
- package/dist-es/commands/UntagResourceCommand.js +47 -0
- package/dist-es/commands/UpdateContentCommand.js +48 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +47 -0
- package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
- package/dist-es/commands/index.js +41 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/QConnectServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +508 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAssistantAssociationsPaginator.js +25 -0
- package/dist-es/pagination/ListAssistantsPaginator.js +25 -0
- package/dist-es/pagination/ListContentsPaginator.js +25 -0
- package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListKnowledgeBasesPaginator.js +25 -0
- package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/QueryAssistantPaginator.js +25 -0
- package/dist-es/pagination/SearchContentPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/SearchSessionsPaginator.js +25 -0
- package/dist-es/pagination/index.js +11 -0
- package/dist-es/protocols/Aws_restJson1.js +2907 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/QConnect.d.ts +309 -0
- package/dist-types/QConnectClient.d.ts +222 -0
- package/dist-types/commands/CreateAssistantAssociationCommand.d.ts +117 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +117 -0
- package/dist-types/commands/CreateContentCommand.d.ts +123 -0
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +157 -0
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +104 -0
- package/dist-types/commands/DeleteAssistantAssociationCommand.d.ts +81 -0
- package/dist-types/commands/DeleteAssistantCommand.d.ts +80 -0
- package/dist-types/commands/DeleteContentCommand.d.ts +81 -0
- package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
- package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +94 -0
- package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
- package/dist-types/commands/GetAssistantAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +101 -0
- package/dist-types/commands/GetContentCommand.d.ts +102 -0
- package/dist-types/commands/GetContentSummaryCommand.d.ts +99 -0
- package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +107 -0
- package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +239 -0
- package/dist-types/commands/GetSessionCommand.d.ts +94 -0
- package/dist-types/commands/ListAssistantAssociationsCommand.d.ts +102 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +102 -0
- package/dist-types/commands/ListContentsCommand.d.ts +103 -0
- package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +107 -0
- package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +78 -0
- package/dist-types/commands/NotifyRecommendationsReceivedCommand.d.ts +96 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +238 -0
- package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +80 -0
- package/dist-types/commands/SearchContentCommand.d.ts +113 -0
- package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
- package/dist-types/commands/SearchSessionsCommand.d.ts +101 -0
- package/dist-types/commands/StartContentUploadCommand.d.ts +92 -0
- package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
- package/dist-types/commands/TagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +77 -0
- package/dist-types/commands/UpdateContentCommand.d.ts +114 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +113 -0
- package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +41 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +27 -0
- package/dist-types/models/QConnectServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4249 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAssistantAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssistantsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKnowledgeBasesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/QueryAssistantPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContentPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchSessionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +11 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +371 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/QConnect.d.ts +702 -0
- package/dist-types/ts3.4/QConnectClient.d.ts +364 -0
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +41 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/QConnectServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1241 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAssistantAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssistantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKnowledgeBasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/QueryAssistantPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContentPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchSessionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +497 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
package/README.md
ADDED
|
@@ -0,0 +1,545 @@
|
|
|
1
|
+
<!-- generated file, do not edit directly -->
|
|
2
|
+
|
|
3
|
+
# @aws-sdk/client-qconnect
|
|
4
|
+
|
|
5
|
+
## Description
|
|
6
|
+
|
|
7
|
+
AWS SDK for JavaScript QConnect Client for Node.js, Browser and React Native.
|
|
8
|
+
|
|
9
|
+
<p>Amazon Q in Connect is a generative AI customer service assistant. It is an LLM-enhanced evolution
|
|
10
|
+
of Amazon Connect Wisdom that delivers real-time recommendations to help contact center
|
|
11
|
+
agents resolve customer issues quickly and accurately.</p>
|
|
12
|
+
<p>Amazon Q automatically detects customer intent during calls and chats using
|
|
13
|
+
conversational analytics and natural language understanding (NLU). It then provides agents
|
|
14
|
+
with immediate, real-time generative responses and suggested actions, and links to relevant
|
|
15
|
+
documents and articles. Agents can also query Amazon Q directly using natural language or
|
|
16
|
+
keywords to answer customer requests.</p>
|
|
17
|
+
<p>Use the Amazon Q in Connect APIs to create an assistant and a knowledge base, for example, or
|
|
18
|
+
manage content by uploading custom files.</p>
|
|
19
|
+
<p>For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-q-connect.html">Use Amazon Q in Connect for generative AI
|
|
20
|
+
powered agent assistance in real-time</a> in the <i>Amazon Connect
|
|
21
|
+
Administrator Guide</i>.</p>
|
|
22
|
+
|
|
23
|
+
## Installing
|
|
24
|
+
|
|
25
|
+
To install the this package, simply type add or install @aws-sdk/client-qconnect
|
|
26
|
+
using your favorite package manager:
|
|
27
|
+
|
|
28
|
+
- `npm install @aws-sdk/client-qconnect`
|
|
29
|
+
- `yarn add @aws-sdk/client-qconnect`
|
|
30
|
+
- `pnpm add @aws-sdk/client-qconnect`
|
|
31
|
+
|
|
32
|
+
## Getting Started
|
|
33
|
+
|
|
34
|
+
### Import
|
|
35
|
+
|
|
36
|
+
The AWS SDK is modulized by clients and commands.
|
|
37
|
+
To send a request, you only need to import the `QConnectClient` and
|
|
38
|
+
the commands you need, for example `ListAssistantsCommand`:
|
|
39
|
+
|
|
40
|
+
```js
|
|
41
|
+
// ES5 example
|
|
42
|
+
const { QConnectClient, ListAssistantsCommand } = require("@aws-sdk/client-qconnect");
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
```ts
|
|
46
|
+
// ES6+ example
|
|
47
|
+
import { QConnectClient, ListAssistantsCommand } from "@aws-sdk/client-qconnect";
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Usage
|
|
51
|
+
|
|
52
|
+
To send a request, you:
|
|
53
|
+
|
|
54
|
+
- Initiate client with configuration (e.g. credentials, region).
|
|
55
|
+
- Initiate command with input parameters.
|
|
56
|
+
- Call `send` operation on client with command object as input.
|
|
57
|
+
- If you are using a custom http handler, you may call `destroy()` to close open connections.
|
|
58
|
+
|
|
59
|
+
```js
|
|
60
|
+
// a client can be shared by different commands.
|
|
61
|
+
const client = new QConnectClient({ region: "REGION" });
|
|
62
|
+
|
|
63
|
+
const params = {
|
|
64
|
+
/** input parameters */
|
|
65
|
+
};
|
|
66
|
+
const command = new ListAssistantsCommand(params);
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
#### Async/await
|
|
70
|
+
|
|
71
|
+
We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
|
|
72
|
+
operator to wait for the promise returned by send operation as follows:
|
|
73
|
+
|
|
74
|
+
```js
|
|
75
|
+
// async/await.
|
|
76
|
+
try {
|
|
77
|
+
const data = await client.send(command);
|
|
78
|
+
// process data.
|
|
79
|
+
} catch (error) {
|
|
80
|
+
// error handling.
|
|
81
|
+
} finally {
|
|
82
|
+
// finally.
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Async-await is clean, concise, intuitive, easy to debug and has better error handling
|
|
87
|
+
as compared to using Promise chains or callbacks.
|
|
88
|
+
|
|
89
|
+
#### Promises
|
|
90
|
+
|
|
91
|
+
You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
|
|
92
|
+
to execute send operation.
|
|
93
|
+
|
|
94
|
+
```js
|
|
95
|
+
client.send(command).then(
|
|
96
|
+
(data) => {
|
|
97
|
+
// process data.
|
|
98
|
+
},
|
|
99
|
+
(error) => {
|
|
100
|
+
// error handling.
|
|
101
|
+
}
|
|
102
|
+
);
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Promises can also be called using `.catch()` and `.finally()` as follows:
|
|
106
|
+
|
|
107
|
+
```js
|
|
108
|
+
client
|
|
109
|
+
.send(command)
|
|
110
|
+
.then((data) => {
|
|
111
|
+
// process data.
|
|
112
|
+
})
|
|
113
|
+
.catch((error) => {
|
|
114
|
+
// error handling.
|
|
115
|
+
})
|
|
116
|
+
.finally(() => {
|
|
117
|
+
// finally.
|
|
118
|
+
});
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
#### Callbacks
|
|
122
|
+
|
|
123
|
+
We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
|
|
124
|
+
but they are supported by the send operation.
|
|
125
|
+
|
|
126
|
+
```js
|
|
127
|
+
// callbacks.
|
|
128
|
+
client.send(command, (err, data) => {
|
|
129
|
+
// process err and data.
|
|
130
|
+
});
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
#### v2 compatible style
|
|
134
|
+
|
|
135
|
+
The client can also send requests using v2 compatible style.
|
|
136
|
+
However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
|
|
137
|
+
on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
|
|
138
|
+
|
|
139
|
+
```ts
|
|
140
|
+
import * as AWS from "@aws-sdk/client-qconnect";
|
|
141
|
+
const client = new AWS.QConnect({ region: "REGION" });
|
|
142
|
+
|
|
143
|
+
// async/await.
|
|
144
|
+
try {
|
|
145
|
+
const data = await client.listAssistants(params);
|
|
146
|
+
// process data.
|
|
147
|
+
} catch (error) {
|
|
148
|
+
// error handling.
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Promises.
|
|
152
|
+
client
|
|
153
|
+
.listAssistants(params)
|
|
154
|
+
.then((data) => {
|
|
155
|
+
// process data.
|
|
156
|
+
})
|
|
157
|
+
.catch((error) => {
|
|
158
|
+
// error handling.
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
// callbacks.
|
|
162
|
+
client.listAssistants(params, (err, data) => {
|
|
163
|
+
// process err and data.
|
|
164
|
+
});
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Troubleshooting
|
|
168
|
+
|
|
169
|
+
When the service returns an exception, the error will include the exception information,
|
|
170
|
+
as well as response metadata (e.g. request id).
|
|
171
|
+
|
|
172
|
+
```js
|
|
173
|
+
try {
|
|
174
|
+
const data = await client.send(command);
|
|
175
|
+
// process data.
|
|
176
|
+
} catch (error) {
|
|
177
|
+
const { requestId, cfId, extendedRequestId } = error.$metadata;
|
|
178
|
+
console.log({ requestId, cfId, extendedRequestId });
|
|
179
|
+
/**
|
|
180
|
+
* The keys within exceptions are also parsed.
|
|
181
|
+
* You can access them by specifying exception names:
|
|
182
|
+
* if (error.name === 'SomeServiceException') {
|
|
183
|
+
* const value = error.specialKeyInException;
|
|
184
|
+
* }
|
|
185
|
+
*/
|
|
186
|
+
}
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
## Getting Help
|
|
190
|
+
|
|
191
|
+
Please use these community resources for getting help.
|
|
192
|
+
We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
|
|
193
|
+
|
|
194
|
+
- Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
|
|
195
|
+
or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
|
|
196
|
+
- Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
|
|
197
|
+
on AWS Developer Blog.
|
|
198
|
+
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`.
|
|
199
|
+
- Join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3).
|
|
200
|
+
- If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose).
|
|
201
|
+
|
|
202
|
+
To test your universal JavaScript code in Node.js, browser and react-native environments,
|
|
203
|
+
visit our [code samples repo](https://github.com/aws-samples/aws-sdk-js-tests).
|
|
204
|
+
|
|
205
|
+
## Contributing
|
|
206
|
+
|
|
207
|
+
This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/client-qconnect` package is updated.
|
|
208
|
+
To contribute to client you can check our [generate clients scripts](https://github.com/aws/aws-sdk-js-v3/tree/main/scripts/generate-clients).
|
|
209
|
+
|
|
210
|
+
## License
|
|
211
|
+
|
|
212
|
+
This SDK is distributed under the
|
|
213
|
+
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
|
|
214
|
+
see LICENSE for more information.
|
|
215
|
+
|
|
216
|
+
## Client Commands (Operations List)
|
|
217
|
+
|
|
218
|
+
<details>
|
|
219
|
+
<summary>
|
|
220
|
+
CreateAssistant
|
|
221
|
+
</summary>
|
|
222
|
+
|
|
223
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateAssistantCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateAssistantCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateAssistantCommandOutput/)
|
|
224
|
+
|
|
225
|
+
</details>
|
|
226
|
+
<details>
|
|
227
|
+
<summary>
|
|
228
|
+
CreateAssistantAssociation
|
|
229
|
+
</summary>
|
|
230
|
+
|
|
231
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateAssistantAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateAssistantAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateAssistantAssociationCommandOutput/)
|
|
232
|
+
|
|
233
|
+
</details>
|
|
234
|
+
<details>
|
|
235
|
+
<summary>
|
|
236
|
+
CreateContent
|
|
237
|
+
</summary>
|
|
238
|
+
|
|
239
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateContentCommandOutput/)
|
|
240
|
+
|
|
241
|
+
</details>
|
|
242
|
+
<details>
|
|
243
|
+
<summary>
|
|
244
|
+
CreateKnowledgeBase
|
|
245
|
+
</summary>
|
|
246
|
+
|
|
247
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateKnowledgeBaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateKnowledgeBaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateKnowledgeBaseCommandOutput/)
|
|
248
|
+
|
|
249
|
+
</details>
|
|
250
|
+
<details>
|
|
251
|
+
<summary>
|
|
252
|
+
CreateQuickResponse
|
|
253
|
+
</summary>
|
|
254
|
+
|
|
255
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateQuickResponseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateQuickResponseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateQuickResponseCommandOutput/)
|
|
256
|
+
|
|
257
|
+
</details>
|
|
258
|
+
<details>
|
|
259
|
+
<summary>
|
|
260
|
+
CreateSession
|
|
261
|
+
</summary>
|
|
262
|
+
|
|
263
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/CreateSessionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateSessionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/CreateSessionCommandOutput/)
|
|
264
|
+
|
|
265
|
+
</details>
|
|
266
|
+
<details>
|
|
267
|
+
<summary>
|
|
268
|
+
DeleteAssistant
|
|
269
|
+
</summary>
|
|
270
|
+
|
|
271
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteAssistantCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteAssistantCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteAssistantCommandOutput/)
|
|
272
|
+
|
|
273
|
+
</details>
|
|
274
|
+
<details>
|
|
275
|
+
<summary>
|
|
276
|
+
DeleteAssistantAssociation
|
|
277
|
+
</summary>
|
|
278
|
+
|
|
279
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteAssistantAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteAssistantAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteAssistantAssociationCommandOutput/)
|
|
280
|
+
|
|
281
|
+
</details>
|
|
282
|
+
<details>
|
|
283
|
+
<summary>
|
|
284
|
+
DeleteContent
|
|
285
|
+
</summary>
|
|
286
|
+
|
|
287
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteContentCommandOutput/)
|
|
288
|
+
|
|
289
|
+
</details>
|
|
290
|
+
<details>
|
|
291
|
+
<summary>
|
|
292
|
+
DeleteImportJob
|
|
293
|
+
</summary>
|
|
294
|
+
|
|
295
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteImportJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteImportJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteImportJobCommandOutput/)
|
|
296
|
+
|
|
297
|
+
</details>
|
|
298
|
+
<details>
|
|
299
|
+
<summary>
|
|
300
|
+
DeleteKnowledgeBase
|
|
301
|
+
</summary>
|
|
302
|
+
|
|
303
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteKnowledgeBaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteKnowledgeBaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteKnowledgeBaseCommandOutput/)
|
|
304
|
+
|
|
305
|
+
</details>
|
|
306
|
+
<details>
|
|
307
|
+
<summary>
|
|
308
|
+
DeleteQuickResponse
|
|
309
|
+
</summary>
|
|
310
|
+
|
|
311
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/DeleteQuickResponseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteQuickResponseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/DeleteQuickResponseCommandOutput/)
|
|
312
|
+
|
|
313
|
+
</details>
|
|
314
|
+
<details>
|
|
315
|
+
<summary>
|
|
316
|
+
GetAssistant
|
|
317
|
+
</summary>
|
|
318
|
+
|
|
319
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetAssistantCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetAssistantCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetAssistantCommandOutput/)
|
|
320
|
+
|
|
321
|
+
</details>
|
|
322
|
+
<details>
|
|
323
|
+
<summary>
|
|
324
|
+
GetAssistantAssociation
|
|
325
|
+
</summary>
|
|
326
|
+
|
|
327
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetAssistantAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetAssistantAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetAssistantAssociationCommandOutput/)
|
|
328
|
+
|
|
329
|
+
</details>
|
|
330
|
+
<details>
|
|
331
|
+
<summary>
|
|
332
|
+
GetContent
|
|
333
|
+
</summary>
|
|
334
|
+
|
|
335
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetContentCommandOutput/)
|
|
336
|
+
|
|
337
|
+
</details>
|
|
338
|
+
<details>
|
|
339
|
+
<summary>
|
|
340
|
+
GetContentSummary
|
|
341
|
+
</summary>
|
|
342
|
+
|
|
343
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetContentSummaryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetContentSummaryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetContentSummaryCommandOutput/)
|
|
344
|
+
|
|
345
|
+
</details>
|
|
346
|
+
<details>
|
|
347
|
+
<summary>
|
|
348
|
+
GetImportJob
|
|
349
|
+
</summary>
|
|
350
|
+
|
|
351
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetImportJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetImportJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetImportJobCommandOutput/)
|
|
352
|
+
|
|
353
|
+
</details>
|
|
354
|
+
<details>
|
|
355
|
+
<summary>
|
|
356
|
+
GetKnowledgeBase
|
|
357
|
+
</summary>
|
|
358
|
+
|
|
359
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetKnowledgeBaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetKnowledgeBaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetKnowledgeBaseCommandOutput/)
|
|
360
|
+
|
|
361
|
+
</details>
|
|
362
|
+
<details>
|
|
363
|
+
<summary>
|
|
364
|
+
GetQuickResponse
|
|
365
|
+
</summary>
|
|
366
|
+
|
|
367
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetQuickResponseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetQuickResponseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetQuickResponseCommandOutput/)
|
|
368
|
+
|
|
369
|
+
</details>
|
|
370
|
+
<details>
|
|
371
|
+
<summary>
|
|
372
|
+
GetRecommendations
|
|
373
|
+
</summary>
|
|
374
|
+
|
|
375
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetRecommendationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetRecommendationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetRecommendationsCommandOutput/)
|
|
376
|
+
|
|
377
|
+
</details>
|
|
378
|
+
<details>
|
|
379
|
+
<summary>
|
|
380
|
+
GetSession
|
|
381
|
+
</summary>
|
|
382
|
+
|
|
383
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/GetSessionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetSessionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/GetSessionCommandOutput/)
|
|
384
|
+
|
|
385
|
+
</details>
|
|
386
|
+
<details>
|
|
387
|
+
<summary>
|
|
388
|
+
ListAssistantAssociations
|
|
389
|
+
</summary>
|
|
390
|
+
|
|
391
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListAssistantAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListAssistantAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListAssistantAssociationsCommandOutput/)
|
|
392
|
+
|
|
393
|
+
</details>
|
|
394
|
+
<details>
|
|
395
|
+
<summary>
|
|
396
|
+
ListAssistants
|
|
397
|
+
</summary>
|
|
398
|
+
|
|
399
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListAssistantsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListAssistantsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListAssistantsCommandOutput/)
|
|
400
|
+
|
|
401
|
+
</details>
|
|
402
|
+
<details>
|
|
403
|
+
<summary>
|
|
404
|
+
ListContents
|
|
405
|
+
</summary>
|
|
406
|
+
|
|
407
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListContentsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListContentsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListContentsCommandOutput/)
|
|
408
|
+
|
|
409
|
+
</details>
|
|
410
|
+
<details>
|
|
411
|
+
<summary>
|
|
412
|
+
ListImportJobs
|
|
413
|
+
</summary>
|
|
414
|
+
|
|
415
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListImportJobsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListImportJobsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListImportJobsCommandOutput/)
|
|
416
|
+
|
|
417
|
+
</details>
|
|
418
|
+
<details>
|
|
419
|
+
<summary>
|
|
420
|
+
ListKnowledgeBases
|
|
421
|
+
</summary>
|
|
422
|
+
|
|
423
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListKnowledgeBasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListKnowledgeBasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListKnowledgeBasesCommandOutput/)
|
|
424
|
+
|
|
425
|
+
</details>
|
|
426
|
+
<details>
|
|
427
|
+
<summary>
|
|
428
|
+
ListQuickResponses
|
|
429
|
+
</summary>
|
|
430
|
+
|
|
431
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListQuickResponsesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListQuickResponsesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListQuickResponsesCommandOutput/)
|
|
432
|
+
|
|
433
|
+
</details>
|
|
434
|
+
<details>
|
|
435
|
+
<summary>
|
|
436
|
+
ListTagsForResource
|
|
437
|
+
</summary>
|
|
438
|
+
|
|
439
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/ListTagsForResourceCommandOutput/)
|
|
440
|
+
|
|
441
|
+
</details>
|
|
442
|
+
<details>
|
|
443
|
+
<summary>
|
|
444
|
+
NotifyRecommendationsReceived
|
|
445
|
+
</summary>
|
|
446
|
+
|
|
447
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/NotifyRecommendationsReceivedCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/NotifyRecommendationsReceivedCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/NotifyRecommendationsReceivedCommandOutput/)
|
|
448
|
+
|
|
449
|
+
</details>
|
|
450
|
+
<details>
|
|
451
|
+
<summary>
|
|
452
|
+
QueryAssistant
|
|
453
|
+
</summary>
|
|
454
|
+
|
|
455
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/QueryAssistantCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/QueryAssistantCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/QueryAssistantCommandOutput/)
|
|
456
|
+
|
|
457
|
+
</details>
|
|
458
|
+
<details>
|
|
459
|
+
<summary>
|
|
460
|
+
RemoveKnowledgeBaseTemplateUri
|
|
461
|
+
</summary>
|
|
462
|
+
|
|
463
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/RemoveKnowledgeBaseTemplateUriCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/RemoveKnowledgeBaseTemplateUriCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/RemoveKnowledgeBaseTemplateUriCommandOutput/)
|
|
464
|
+
|
|
465
|
+
</details>
|
|
466
|
+
<details>
|
|
467
|
+
<summary>
|
|
468
|
+
SearchContent
|
|
469
|
+
</summary>
|
|
470
|
+
|
|
471
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/SearchContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchContentCommandOutput/)
|
|
472
|
+
|
|
473
|
+
</details>
|
|
474
|
+
<details>
|
|
475
|
+
<summary>
|
|
476
|
+
SearchQuickResponses
|
|
477
|
+
</summary>
|
|
478
|
+
|
|
479
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/SearchQuickResponsesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchQuickResponsesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchQuickResponsesCommandOutput/)
|
|
480
|
+
|
|
481
|
+
</details>
|
|
482
|
+
<details>
|
|
483
|
+
<summary>
|
|
484
|
+
SearchSessions
|
|
485
|
+
</summary>
|
|
486
|
+
|
|
487
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/SearchSessionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchSessionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/SearchSessionsCommandOutput/)
|
|
488
|
+
|
|
489
|
+
</details>
|
|
490
|
+
<details>
|
|
491
|
+
<summary>
|
|
492
|
+
StartContentUpload
|
|
493
|
+
</summary>
|
|
494
|
+
|
|
495
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/StartContentUploadCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/StartContentUploadCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/StartContentUploadCommandOutput/)
|
|
496
|
+
|
|
497
|
+
</details>
|
|
498
|
+
<details>
|
|
499
|
+
<summary>
|
|
500
|
+
StartImportJob
|
|
501
|
+
</summary>
|
|
502
|
+
|
|
503
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/StartImportJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/StartImportJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/StartImportJobCommandOutput/)
|
|
504
|
+
|
|
505
|
+
</details>
|
|
506
|
+
<details>
|
|
507
|
+
<summary>
|
|
508
|
+
TagResource
|
|
509
|
+
</summary>
|
|
510
|
+
|
|
511
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/TagResourceCommandOutput/)
|
|
512
|
+
|
|
513
|
+
</details>
|
|
514
|
+
<details>
|
|
515
|
+
<summary>
|
|
516
|
+
UntagResource
|
|
517
|
+
</summary>
|
|
518
|
+
|
|
519
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UntagResourceCommandOutput/)
|
|
520
|
+
|
|
521
|
+
</details>
|
|
522
|
+
<details>
|
|
523
|
+
<summary>
|
|
524
|
+
UpdateContent
|
|
525
|
+
</summary>
|
|
526
|
+
|
|
527
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/UpdateContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateContentCommandOutput/)
|
|
528
|
+
|
|
529
|
+
</details>
|
|
530
|
+
<details>
|
|
531
|
+
<summary>
|
|
532
|
+
UpdateKnowledgeBaseTemplateUri
|
|
533
|
+
</summary>
|
|
534
|
+
|
|
535
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/UpdateKnowledgeBaseTemplateUriCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateKnowledgeBaseTemplateUriCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateKnowledgeBaseTemplateUriCommandOutput/)
|
|
536
|
+
|
|
537
|
+
</details>
|
|
538
|
+
<details>
|
|
539
|
+
<summary>
|
|
540
|
+
UpdateQuickResponse
|
|
541
|
+
</summary>
|
|
542
|
+
|
|
543
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qconnect/command/UpdateQuickResponseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateQuickResponseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qconnect/Interface/UpdateQuickResponseCommandOutput/)
|
|
544
|
+
|
|
545
|
+
</details>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QConnect = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
const CreateAssistantAssociationCommand_1 = require("./commands/CreateAssistantAssociationCommand");
|
|
6
|
+
const CreateAssistantCommand_1 = require("./commands/CreateAssistantCommand");
|
|
7
|
+
const CreateContentCommand_1 = require("./commands/CreateContentCommand");
|
|
8
|
+
const CreateKnowledgeBaseCommand_1 = require("./commands/CreateKnowledgeBaseCommand");
|
|
9
|
+
const CreateQuickResponseCommand_1 = require("./commands/CreateQuickResponseCommand");
|
|
10
|
+
const CreateSessionCommand_1 = require("./commands/CreateSessionCommand");
|
|
11
|
+
const DeleteAssistantAssociationCommand_1 = require("./commands/DeleteAssistantAssociationCommand");
|
|
12
|
+
const DeleteAssistantCommand_1 = require("./commands/DeleteAssistantCommand");
|
|
13
|
+
const DeleteContentCommand_1 = require("./commands/DeleteContentCommand");
|
|
14
|
+
const DeleteImportJobCommand_1 = require("./commands/DeleteImportJobCommand");
|
|
15
|
+
const DeleteKnowledgeBaseCommand_1 = require("./commands/DeleteKnowledgeBaseCommand");
|
|
16
|
+
const DeleteQuickResponseCommand_1 = require("./commands/DeleteQuickResponseCommand");
|
|
17
|
+
const GetAssistantAssociationCommand_1 = require("./commands/GetAssistantAssociationCommand");
|
|
18
|
+
const GetAssistantCommand_1 = require("./commands/GetAssistantCommand");
|
|
19
|
+
const GetContentCommand_1 = require("./commands/GetContentCommand");
|
|
20
|
+
const GetContentSummaryCommand_1 = require("./commands/GetContentSummaryCommand");
|
|
21
|
+
const GetImportJobCommand_1 = require("./commands/GetImportJobCommand");
|
|
22
|
+
const GetKnowledgeBaseCommand_1 = require("./commands/GetKnowledgeBaseCommand");
|
|
23
|
+
const GetQuickResponseCommand_1 = require("./commands/GetQuickResponseCommand");
|
|
24
|
+
const GetRecommendationsCommand_1 = require("./commands/GetRecommendationsCommand");
|
|
25
|
+
const GetSessionCommand_1 = require("./commands/GetSessionCommand");
|
|
26
|
+
const ListAssistantAssociationsCommand_1 = require("./commands/ListAssistantAssociationsCommand");
|
|
27
|
+
const ListAssistantsCommand_1 = require("./commands/ListAssistantsCommand");
|
|
28
|
+
const ListContentsCommand_1 = require("./commands/ListContentsCommand");
|
|
29
|
+
const ListImportJobsCommand_1 = require("./commands/ListImportJobsCommand");
|
|
30
|
+
const ListKnowledgeBasesCommand_1 = require("./commands/ListKnowledgeBasesCommand");
|
|
31
|
+
const ListQuickResponsesCommand_1 = require("./commands/ListQuickResponsesCommand");
|
|
32
|
+
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
33
|
+
const NotifyRecommendationsReceivedCommand_1 = require("./commands/NotifyRecommendationsReceivedCommand");
|
|
34
|
+
const QueryAssistantCommand_1 = require("./commands/QueryAssistantCommand");
|
|
35
|
+
const RemoveKnowledgeBaseTemplateUriCommand_1 = require("./commands/RemoveKnowledgeBaseTemplateUriCommand");
|
|
36
|
+
const SearchContentCommand_1 = require("./commands/SearchContentCommand");
|
|
37
|
+
const SearchQuickResponsesCommand_1 = require("./commands/SearchQuickResponsesCommand");
|
|
38
|
+
const SearchSessionsCommand_1 = require("./commands/SearchSessionsCommand");
|
|
39
|
+
const StartContentUploadCommand_1 = require("./commands/StartContentUploadCommand");
|
|
40
|
+
const StartImportJobCommand_1 = require("./commands/StartImportJobCommand");
|
|
41
|
+
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
42
|
+
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
43
|
+
const UpdateContentCommand_1 = require("./commands/UpdateContentCommand");
|
|
44
|
+
const UpdateKnowledgeBaseTemplateUriCommand_1 = require("./commands/UpdateKnowledgeBaseTemplateUriCommand");
|
|
45
|
+
const UpdateQuickResponseCommand_1 = require("./commands/UpdateQuickResponseCommand");
|
|
46
|
+
const QConnectClient_1 = require("./QConnectClient");
|
|
47
|
+
const commands = {
|
|
48
|
+
CreateAssistantCommand: CreateAssistantCommand_1.CreateAssistantCommand,
|
|
49
|
+
CreateAssistantAssociationCommand: CreateAssistantAssociationCommand_1.CreateAssistantAssociationCommand,
|
|
50
|
+
CreateContentCommand: CreateContentCommand_1.CreateContentCommand,
|
|
51
|
+
CreateKnowledgeBaseCommand: CreateKnowledgeBaseCommand_1.CreateKnowledgeBaseCommand,
|
|
52
|
+
CreateQuickResponseCommand: CreateQuickResponseCommand_1.CreateQuickResponseCommand,
|
|
53
|
+
CreateSessionCommand: CreateSessionCommand_1.CreateSessionCommand,
|
|
54
|
+
DeleteAssistantCommand: DeleteAssistantCommand_1.DeleteAssistantCommand,
|
|
55
|
+
DeleteAssistantAssociationCommand: DeleteAssistantAssociationCommand_1.DeleteAssistantAssociationCommand,
|
|
56
|
+
DeleteContentCommand: DeleteContentCommand_1.DeleteContentCommand,
|
|
57
|
+
DeleteImportJobCommand: DeleteImportJobCommand_1.DeleteImportJobCommand,
|
|
58
|
+
DeleteKnowledgeBaseCommand: DeleteKnowledgeBaseCommand_1.DeleteKnowledgeBaseCommand,
|
|
59
|
+
DeleteQuickResponseCommand: DeleteQuickResponseCommand_1.DeleteQuickResponseCommand,
|
|
60
|
+
GetAssistantCommand: GetAssistantCommand_1.GetAssistantCommand,
|
|
61
|
+
GetAssistantAssociationCommand: GetAssistantAssociationCommand_1.GetAssistantAssociationCommand,
|
|
62
|
+
GetContentCommand: GetContentCommand_1.GetContentCommand,
|
|
63
|
+
GetContentSummaryCommand: GetContentSummaryCommand_1.GetContentSummaryCommand,
|
|
64
|
+
GetImportJobCommand: GetImportJobCommand_1.GetImportJobCommand,
|
|
65
|
+
GetKnowledgeBaseCommand: GetKnowledgeBaseCommand_1.GetKnowledgeBaseCommand,
|
|
66
|
+
GetQuickResponseCommand: GetQuickResponseCommand_1.GetQuickResponseCommand,
|
|
67
|
+
GetRecommendationsCommand: GetRecommendationsCommand_1.GetRecommendationsCommand,
|
|
68
|
+
GetSessionCommand: GetSessionCommand_1.GetSessionCommand,
|
|
69
|
+
ListAssistantAssociationsCommand: ListAssistantAssociationsCommand_1.ListAssistantAssociationsCommand,
|
|
70
|
+
ListAssistantsCommand: ListAssistantsCommand_1.ListAssistantsCommand,
|
|
71
|
+
ListContentsCommand: ListContentsCommand_1.ListContentsCommand,
|
|
72
|
+
ListImportJobsCommand: ListImportJobsCommand_1.ListImportJobsCommand,
|
|
73
|
+
ListKnowledgeBasesCommand: ListKnowledgeBasesCommand_1.ListKnowledgeBasesCommand,
|
|
74
|
+
ListQuickResponsesCommand: ListQuickResponsesCommand_1.ListQuickResponsesCommand,
|
|
75
|
+
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
76
|
+
NotifyRecommendationsReceivedCommand: NotifyRecommendationsReceivedCommand_1.NotifyRecommendationsReceivedCommand,
|
|
77
|
+
QueryAssistantCommand: QueryAssistantCommand_1.QueryAssistantCommand,
|
|
78
|
+
RemoveKnowledgeBaseTemplateUriCommand: RemoveKnowledgeBaseTemplateUriCommand_1.RemoveKnowledgeBaseTemplateUriCommand,
|
|
79
|
+
SearchContentCommand: SearchContentCommand_1.SearchContentCommand,
|
|
80
|
+
SearchQuickResponsesCommand: SearchQuickResponsesCommand_1.SearchQuickResponsesCommand,
|
|
81
|
+
SearchSessionsCommand: SearchSessionsCommand_1.SearchSessionsCommand,
|
|
82
|
+
StartContentUploadCommand: StartContentUploadCommand_1.StartContentUploadCommand,
|
|
83
|
+
StartImportJobCommand: StartImportJobCommand_1.StartImportJobCommand,
|
|
84
|
+
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
85
|
+
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
86
|
+
UpdateContentCommand: UpdateContentCommand_1.UpdateContentCommand,
|
|
87
|
+
UpdateKnowledgeBaseTemplateUriCommand: UpdateKnowledgeBaseTemplateUriCommand_1.UpdateKnowledgeBaseTemplateUriCommand,
|
|
88
|
+
UpdateQuickResponseCommand: UpdateQuickResponseCommand_1.UpdateQuickResponseCommand,
|
|
89
|
+
};
|
|
90
|
+
class QConnect extends QConnectClient_1.QConnectClient {
|
|
91
|
+
}
|
|
92
|
+
exports.QConnect = QConnect;
|
|
93
|
+
(0, smithy_client_1.createAggregatedClient)(commands, QConnect);
|