@aws-sdk/client-qconnect 3.699.0 → 3.709.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.
Files changed (124) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/index.js +1188 -127
  3. package/dist-es/QConnect.js +22 -0
  4. package/dist-es/commands/CreateAIGuardrailCommand.js +23 -0
  5. package/dist-es/commands/CreateAIGuardrailVersionCommand.js +23 -0
  6. package/dist-es/commands/CreateQuickResponseCommand.js +1 -1
  7. package/dist-es/commands/DeleteAIGuardrailCommand.js +22 -0
  8. package/dist-es/commands/DeleteAIGuardrailVersionCommand.js +22 -0
  9. package/dist-es/commands/GetAIGuardrailCommand.js +23 -0
  10. package/dist-es/commands/GetImportJobCommand.js +1 -1
  11. package/dist-es/commands/GetKnowledgeBaseCommand.js +1 -1
  12. package/dist-es/commands/GetMessageTemplateCommand.js +1 -1
  13. package/dist-es/commands/GetNextMessageCommand.js +23 -0
  14. package/dist-es/commands/GetQuickResponseCommand.js +1 -1
  15. package/dist-es/commands/ListAIGuardrailVersionsCommand.js +23 -0
  16. package/dist-es/commands/ListAIGuardrailsCommand.js +23 -0
  17. package/dist-es/commands/ListKnowledgeBasesCommand.js +1 -1
  18. package/dist-es/commands/ListMessagesCommand.js +23 -0
  19. package/dist-es/commands/ListQuickResponsesCommand.js +1 -1
  20. package/dist-es/commands/RenderMessageTemplateCommand.js +1 -1
  21. package/dist-es/commands/SendMessageCommand.js +23 -0
  22. package/dist-es/commands/UpdateAIGuardrailCommand.js +23 -0
  23. package/dist-es/commands/UpdateMessageTemplateCommand.js +1 -1
  24. package/dist-es/commands/UpdateMessageTemplateMetadataCommand.js +1 -1
  25. package/dist-es/commands/UpdateQuickResponseCommand.js +1 -1
  26. package/dist-es/commands/index.js +11 -0
  27. package/dist-es/models/models_0.js +310 -166
  28. package/dist-es/models/models_1.js +167 -1
  29. package/dist-es/pagination/ListAIGuardrailVersionsPaginator.js +4 -0
  30. package/dist-es/pagination/ListAIGuardrailsPaginator.js +4 -0
  31. package/dist-es/pagination/ListMessagesPaginator.js +4 -0
  32. package/dist-es/pagination/index.js +3 -0
  33. package/dist-es/protocols/Aws_restJson1.js +443 -1
  34. package/dist-types/QConnect.d.ts +77 -0
  35. package/dist-types/QConnectClient.d.ts +13 -2
  36. package/dist-types/commands/CreateAIAgentCommand.d.ts +62 -0
  37. package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +31 -0
  38. package/dist-types/commands/CreateAIGuardrailCommand.d.ts +231 -0
  39. package/dist-types/commands/CreateAIGuardrailVersionCommand.d.ts +169 -0
  40. package/dist-types/commands/CreateQuickResponseCommand.d.ts +1 -1
  41. package/dist-types/commands/DeactivateMessageTemplateCommand.d.ts +1 -1
  42. package/dist-types/commands/DeleteAIGuardrailCommand.d.ts +88 -0
  43. package/dist-types/commands/DeleteAIGuardrailVersionCommand.d.ts +89 -0
  44. package/dist-types/commands/DeleteImportJobCommand.d.ts +1 -1
  45. package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +1 -1
  46. package/dist-types/commands/DeleteMessageTemplateAttachmentCommand.d.ts +1 -1
  47. package/dist-types/commands/DeleteMessageTemplateCommand.d.ts +1 -1
  48. package/dist-types/commands/DeleteQuickResponseCommand.d.ts +1 -1
  49. package/dist-types/commands/GetAIAgentCommand.d.ts +31 -0
  50. package/dist-types/commands/GetAIGuardrailCommand.d.ts +157 -0
  51. package/dist-types/commands/GetImportJobCommand.d.ts +1 -1
  52. package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +1 -1
  53. package/dist-types/commands/GetMessageTemplateCommand.d.ts +4 -3
  54. package/dist-types/commands/GetNextMessageCommand.d.ts +106 -0
  55. package/dist-types/commands/GetQuickResponseCommand.d.ts +1 -1
  56. package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +31 -0
  57. package/dist-types/commands/ListAIAgentsCommand.d.ts +31 -0
  58. package/dist-types/commands/ListAIGuardrailVersionsCommand.d.ts +105 -0
  59. package/dist-types/commands/ListAIGuardrailsCommand.d.ts +101 -0
  60. package/dist-types/commands/ListImportJobsCommand.d.ts +1 -1
  61. package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +1 -1
  62. package/dist-types/commands/ListMessageTemplateVersionsCommand.d.ts +1 -1
  63. package/dist-types/commands/ListMessageTemplatesCommand.d.ts +1 -1
  64. package/dist-types/commands/ListMessagesCommand.d.ts +95 -0
  65. package/dist-types/commands/ListQuickResponsesCommand.d.ts +1 -1
  66. package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +1 -2
  67. package/dist-types/commands/RenderMessageTemplateCommand.d.ts +1 -1
  68. package/dist-types/commands/SendMessageCommand.d.ts +114 -0
  69. package/dist-types/commands/UpdateAIAgentCommand.d.ts +62 -0
  70. package/dist-types/commands/UpdateAIGuardrailCommand.d.ts +224 -0
  71. package/dist-types/commands/UpdateMessageTemplateCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateMessageTemplateMetadataCommand.d.ts +1 -1
  73. package/dist-types/commands/UpdateQuickResponseCommand.d.ts +1 -1
  74. package/dist-types/commands/index.d.ts +11 -0
  75. package/dist-types/models/models_0.d.ts +3820 -3619
  76. package/dist-types/models/models_1.d.ts +1513 -1
  77. package/dist-types/pagination/ListAIGuardrailVersionsPaginator.d.ts +7 -0
  78. package/dist-types/pagination/ListAIGuardrailsPaginator.d.ts +7 -0
  79. package/dist-types/pagination/ListMessagesPaginator.d.ts +7 -0
  80. package/dist-types/pagination/index.d.ts +3 -0
  81. package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
  82. package/dist-types/ts3.4/QConnect.d.ts +187 -0
  83. package/dist-types/ts3.4/QConnectClient.d.ts +66 -0
  84. package/dist-types/ts3.4/commands/CreateAIGuardrailCommand.d.ts +51 -0
  85. package/dist-types/ts3.4/commands/CreateAIGuardrailVersionCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/DeactivateMessageTemplateCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/DeleteAIGuardrailCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/DeleteAIGuardrailVersionCommand.d.ts +51 -0
  90. package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/DeleteMessageTemplateAttachmentCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/DeleteMessageTemplateCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/GetAIGuardrailCommand.d.ts +50 -0
  96. package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/GetMessageTemplateCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/GetNextMessageCommand.d.ts +50 -0
  100. package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +1 -1
  101. package/dist-types/ts3.4/commands/ListAIGuardrailVersionsCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListAIGuardrailsCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +1 -1
  105. package/dist-types/ts3.4/commands/ListMessageTemplateVersionsCommand.d.ts +1 -1
  106. package/dist-types/ts3.4/commands/ListMessageTemplatesCommand.d.ts +1 -1
  107. package/dist-types/ts3.4/commands/ListMessagesCommand.d.ts +47 -0
  108. package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +1 -1
  109. package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +4 -2
  110. package/dist-types/ts3.4/commands/RenderMessageTemplateCommand.d.ts +1 -1
  111. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/UpdateAIGuardrailCommand.d.ts +51 -0
  113. package/dist-types/ts3.4/commands/UpdateMessageTemplateCommand.d.ts +1 -1
  114. package/dist-types/ts3.4/commands/UpdateMessageTemplateMetadataCommand.d.ts +1 -1
  115. package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +1 -1
  116. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +482 -441
  118. package/dist-types/ts3.4/models/models_1.d.ts +437 -5
  119. package/dist-types/ts3.4/pagination/ListAIGuardrailVersionsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListAIGuardrailsPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/ListMessagesPaginator.d.ts +11 -0
  122. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  123. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
  124. package/package.json +35 -35
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListAIGuardrailVersionsCommandInput, ListAIGuardrailVersionsCommandOutput } from "../commands/ListAIGuardrailVersionsCommand";
3
+ import { QConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAIGuardrailVersions: (config: QConnectPaginationConfiguration, input: ListAIGuardrailVersionsCommandInput, ...rest: any[]) => Paginator<ListAIGuardrailVersionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListAIGuardrailsCommandInput, ListAIGuardrailsCommandOutput } from "../commands/ListAIGuardrailsCommand";
3
+ import { QConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAIGuardrails: (config: QConnectPaginationConfiguration, input: ListAIGuardrailsCommandInput, ...rest: any[]) => Paginator<ListAIGuardrailsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListMessagesCommandInput, ListMessagesCommandOutput } from "../commands/ListMessagesCommand";
3
+ import { QConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListMessages: (config: QConnectPaginationConfiguration, input: ListMessagesCommandInput, ...rest: any[]) => Paginator<ListMessagesCommandOutput>;
@@ -1,6 +1,8 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAIAgentVersionsPaginator";
3
3
  export * from "./ListAIAgentsPaginator";
4
+ export * from "./ListAIGuardrailVersionsPaginator";
5
+ export * from "./ListAIGuardrailsPaginator";
4
6
  export * from "./ListAIPromptVersionsPaginator";
5
7
  export * from "./ListAIPromptsPaginator";
6
8
  export * from "./ListAssistantAssociationsPaginator";
@@ -11,6 +13,7 @@ export * from "./ListImportJobsPaginator";
11
13
  export * from "./ListKnowledgeBasesPaginator";
12
14
  export * from "./ListMessageTemplateVersionsPaginator";
13
15
  export * from "./ListMessageTemplatesPaginator";
16
+ export * from "./ListMessagesPaginator";
14
17
  export * from "./ListQuickResponsesPaginator";
15
18
  export * from "./QueryAssistantPaginator";
16
19
  export * from "./SearchContentPaginator";
@@ -3,6 +3,8 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { ActivateMessageTemplateCommandInput, ActivateMessageTemplateCommandOutput } from "../commands/ActivateMessageTemplateCommand";
4
4
  import { CreateAIAgentCommandInput, CreateAIAgentCommandOutput } from "../commands/CreateAIAgentCommand";
5
5
  import { CreateAIAgentVersionCommandInput, CreateAIAgentVersionCommandOutput } from "../commands/CreateAIAgentVersionCommand";
6
+ import { CreateAIGuardrailCommandInput, CreateAIGuardrailCommandOutput } from "../commands/CreateAIGuardrailCommand";
7
+ import { CreateAIGuardrailVersionCommandInput, CreateAIGuardrailVersionCommandOutput } from "../commands/CreateAIGuardrailVersionCommand";
6
8
  import { CreateAIPromptCommandInput, CreateAIPromptCommandOutput } from "../commands/CreateAIPromptCommand";
7
9
  import { CreateAIPromptVersionCommandInput, CreateAIPromptVersionCommandOutput } from "../commands/CreateAIPromptVersionCommand";
8
10
  import { CreateAssistantAssociationCommandInput, CreateAssistantAssociationCommandOutput } from "../commands/CreateAssistantAssociationCommand";
@@ -18,6 +20,8 @@ import { CreateSessionCommandInput, CreateSessionCommandOutput } from "../comman
18
20
  import { DeactivateMessageTemplateCommandInput, DeactivateMessageTemplateCommandOutput } from "../commands/DeactivateMessageTemplateCommand";
19
21
  import { DeleteAIAgentCommandInput, DeleteAIAgentCommandOutput } from "../commands/DeleteAIAgentCommand";
20
22
  import { DeleteAIAgentVersionCommandInput, DeleteAIAgentVersionCommandOutput } from "../commands/DeleteAIAgentVersionCommand";
23
+ import { DeleteAIGuardrailCommandInput, DeleteAIGuardrailCommandOutput } from "../commands/DeleteAIGuardrailCommand";
24
+ import { DeleteAIGuardrailVersionCommandInput, DeleteAIGuardrailVersionCommandOutput } from "../commands/DeleteAIGuardrailVersionCommand";
21
25
  import { DeleteAIPromptCommandInput, DeleteAIPromptCommandOutput } from "../commands/DeleteAIPromptCommand";
22
26
  import { DeleteAIPromptVersionCommandInput, DeleteAIPromptVersionCommandOutput } from "../commands/DeleteAIPromptVersionCommand";
23
27
  import { DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput } from "../commands/DeleteAssistantAssociationCommand";
@@ -30,6 +34,7 @@ import { DeleteMessageTemplateAttachmentCommandInput, DeleteMessageTemplateAttac
30
34
  import { DeleteMessageTemplateCommandInput, DeleteMessageTemplateCommandOutput } from "../commands/DeleteMessageTemplateCommand";
31
35
  import { DeleteQuickResponseCommandInput, DeleteQuickResponseCommandOutput } from "../commands/DeleteQuickResponseCommand";
32
36
  import { GetAIAgentCommandInput, GetAIAgentCommandOutput } from "../commands/GetAIAgentCommand";
37
+ import { GetAIGuardrailCommandInput, GetAIGuardrailCommandOutput } from "../commands/GetAIGuardrailCommand";
33
38
  import { GetAIPromptCommandInput, GetAIPromptCommandOutput } from "../commands/GetAIPromptCommand";
34
39
  import { GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput } from "../commands/GetAssistantAssociationCommand";
35
40
  import { GetAssistantCommandInput, GetAssistantCommandOutput } from "../commands/GetAssistantCommand";
@@ -39,11 +44,14 @@ import { GetContentSummaryCommandInput, GetContentSummaryCommandOutput } from ".
39
44
  import { GetImportJobCommandInput, GetImportJobCommandOutput } from "../commands/GetImportJobCommand";
40
45
  import { GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput } from "../commands/GetKnowledgeBaseCommand";
41
46
  import { GetMessageTemplateCommandInput, GetMessageTemplateCommandOutput } from "../commands/GetMessageTemplateCommand";
47
+ import { GetNextMessageCommandInput, GetNextMessageCommandOutput } from "../commands/GetNextMessageCommand";
42
48
  import { GetQuickResponseCommandInput, GetQuickResponseCommandOutput } from "../commands/GetQuickResponseCommand";
43
49
  import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "../commands/GetRecommendationsCommand";
44
50
  import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
45
51
  import { ListAIAgentsCommandInput, ListAIAgentsCommandOutput } from "../commands/ListAIAgentsCommand";
46
52
  import { ListAIAgentVersionsCommandInput, ListAIAgentVersionsCommandOutput } from "../commands/ListAIAgentVersionsCommand";
53
+ import { ListAIGuardrailsCommandInput, ListAIGuardrailsCommandOutput } from "../commands/ListAIGuardrailsCommand";
54
+ import { ListAIGuardrailVersionsCommandInput, ListAIGuardrailVersionsCommandOutput } from "../commands/ListAIGuardrailVersionsCommand";
47
55
  import { ListAIPromptsCommandInput, ListAIPromptsCommandOutput } from "../commands/ListAIPromptsCommand";
48
56
  import { ListAIPromptVersionsCommandInput, ListAIPromptVersionsCommandOutput } from "../commands/ListAIPromptVersionsCommand";
49
57
  import { ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput } from "../commands/ListAssistantAssociationsCommand";
@@ -52,6 +60,7 @@ import { ListContentAssociationsCommandInput, ListContentAssociationsCommandOutp
52
60
  import { ListContentsCommandInput, ListContentsCommandOutput } from "../commands/ListContentsCommand";
53
61
  import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
54
62
  import { ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput } from "../commands/ListKnowledgeBasesCommand";
63
+ import { ListMessagesCommandInput, ListMessagesCommandOutput } from "../commands/ListMessagesCommand";
55
64
  import { ListMessageTemplatesCommandInput, ListMessageTemplatesCommandOutput } from "../commands/ListMessageTemplatesCommand";
56
65
  import { ListMessageTemplateVersionsCommandInput, ListMessageTemplateVersionsCommandOutput } from "../commands/ListMessageTemplateVersionsCommand";
57
66
  import { ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput } from "../commands/ListQuickResponsesCommand";
@@ -66,11 +75,13 @@ import { SearchContentCommandInput, SearchContentCommandOutput } from "../comman
66
75
  import { SearchMessageTemplatesCommandInput, SearchMessageTemplatesCommandOutput } from "../commands/SearchMessageTemplatesCommand";
67
76
  import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
68
77
  import { SearchSessionsCommandInput, SearchSessionsCommandOutput } from "../commands/SearchSessionsCommand";
78
+ import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand";
69
79
  import { StartContentUploadCommandInput, StartContentUploadCommandOutput } from "../commands/StartContentUploadCommand";
70
80
  import { StartImportJobCommandInput, StartImportJobCommandOutput } from "../commands/StartImportJobCommand";
71
81
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
72
82
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
73
83
  import { UpdateAIAgentCommandInput, UpdateAIAgentCommandOutput } from "../commands/UpdateAIAgentCommand";
84
+ import { UpdateAIGuardrailCommandInput, UpdateAIGuardrailCommandOutput } from "../commands/UpdateAIGuardrailCommand";
74
85
  import { UpdateAIPromptCommandInput, UpdateAIPromptCommandOutput } from "../commands/UpdateAIPromptCommand";
75
86
  import { UpdateAssistantAIAgentCommandInput, UpdateAssistantAIAgentCommandOutput } from "../commands/UpdateAssistantAIAgentCommand";
76
87
  import { UpdateContentCommandInput, UpdateContentCommandOutput } from "../commands/UpdateContentCommand";
@@ -92,6 +103,14 @@ export declare const se_CreateAIAgentCommand: (input: CreateAIAgentCommandInput,
92
103
  * serializeAws_restJson1CreateAIAgentVersionCommand
93
104
  */
94
105
  export declare const se_CreateAIAgentVersionCommand: (input: CreateAIAgentVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_restJson1CreateAIGuardrailCommand
108
+ */
109
+ export declare const se_CreateAIGuardrailCommand: (input: CreateAIGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1CreateAIGuardrailVersionCommand
112
+ */
113
+ export declare const se_CreateAIGuardrailVersionCommand: (input: CreateAIGuardrailVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
114
  /**
96
115
  * serializeAws_restJson1CreateAIPromptCommand
97
116
  */
@@ -152,6 +171,14 @@ export declare const se_DeleteAIAgentCommand: (input: DeleteAIAgentCommandInput,
152
171
  * serializeAws_restJson1DeleteAIAgentVersionCommand
153
172
  */
154
173
  export declare const se_DeleteAIAgentVersionCommand: (input: DeleteAIAgentVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
174
+ /**
175
+ * serializeAws_restJson1DeleteAIGuardrailCommand
176
+ */
177
+ export declare const se_DeleteAIGuardrailCommand: (input: DeleteAIGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
+ /**
179
+ * serializeAws_restJson1DeleteAIGuardrailVersionCommand
180
+ */
181
+ export declare const se_DeleteAIGuardrailVersionCommand: (input: DeleteAIGuardrailVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
155
182
  /**
156
183
  * serializeAws_restJson1DeleteAIPromptCommand
157
184
  */
@@ -200,6 +227,10 @@ export declare const se_DeleteQuickResponseCommand: (input: DeleteQuickResponseC
200
227
  * serializeAws_restJson1GetAIAgentCommand
201
228
  */
202
229
  export declare const se_GetAIAgentCommand: (input: GetAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
230
+ /**
231
+ * serializeAws_restJson1GetAIGuardrailCommand
232
+ */
233
+ export declare const se_GetAIGuardrailCommand: (input: GetAIGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
203
234
  /**
204
235
  * serializeAws_restJson1GetAIPromptCommand
205
236
  */
@@ -236,6 +267,10 @@ export declare const se_GetKnowledgeBaseCommand: (input: GetKnowledgeBaseCommand
236
267
  * serializeAws_restJson1GetMessageTemplateCommand
237
268
  */
238
269
  export declare const se_GetMessageTemplateCommand: (input: GetMessageTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
270
+ /**
271
+ * serializeAws_restJson1GetNextMessageCommand
272
+ */
273
+ export declare const se_GetNextMessageCommand: (input: GetNextMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
239
274
  /**
240
275
  * serializeAws_restJson1GetQuickResponseCommand
241
276
  */
@@ -256,6 +291,14 @@ export declare const se_ListAIAgentsCommand: (input: ListAIAgentsCommandInput, c
256
291
  * serializeAws_restJson1ListAIAgentVersionsCommand
257
292
  */
258
293
  export declare const se_ListAIAgentVersionsCommand: (input: ListAIAgentVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
294
+ /**
295
+ * serializeAws_restJson1ListAIGuardrailsCommand
296
+ */
297
+ export declare const se_ListAIGuardrailsCommand: (input: ListAIGuardrailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
298
+ /**
299
+ * serializeAws_restJson1ListAIGuardrailVersionsCommand
300
+ */
301
+ export declare const se_ListAIGuardrailVersionsCommand: (input: ListAIGuardrailVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
259
302
  /**
260
303
  * serializeAws_restJson1ListAIPromptsCommand
261
304
  */
@@ -288,6 +331,10 @@ export declare const se_ListImportJobsCommand: (input: ListImportJobsCommandInpu
288
331
  * serializeAws_restJson1ListKnowledgeBasesCommand
289
332
  */
290
333
  export declare const se_ListKnowledgeBasesCommand: (input: ListKnowledgeBasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
334
+ /**
335
+ * serializeAws_restJson1ListMessagesCommand
336
+ */
337
+ export declare const se_ListMessagesCommand: (input: ListMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
291
338
  /**
292
339
  * serializeAws_restJson1ListMessageTemplatesCommand
293
340
  */
@@ -344,6 +391,10 @@ export declare const se_SearchQuickResponsesCommand: (input: SearchQuickResponse
344
391
  * serializeAws_restJson1SearchSessionsCommand
345
392
  */
346
393
  export declare const se_SearchSessionsCommand: (input: SearchSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
394
+ /**
395
+ * serializeAws_restJson1SendMessageCommand
396
+ */
397
+ export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
347
398
  /**
348
399
  * serializeAws_restJson1StartContentUploadCommand
349
400
  */
@@ -364,6 +415,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
364
415
  * serializeAws_restJson1UpdateAIAgentCommand
365
416
  */
366
417
  export declare const se_UpdateAIAgentCommand: (input: UpdateAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
418
+ /**
419
+ * serializeAws_restJson1UpdateAIGuardrailCommand
420
+ */
421
+ export declare const se_UpdateAIGuardrailCommand: (input: UpdateAIGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
367
422
  /**
368
423
  * serializeAws_restJson1UpdateAIPromptCommand
369
424
  */
@@ -412,6 +467,14 @@ export declare const de_CreateAIAgentCommand: (output: __HttpResponse, context:
412
467
  * deserializeAws_restJson1CreateAIAgentVersionCommand
413
468
  */
414
469
  export declare const de_CreateAIAgentVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIAgentVersionCommandOutput>;
470
+ /**
471
+ * deserializeAws_restJson1CreateAIGuardrailCommand
472
+ */
473
+ export declare const de_CreateAIGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIGuardrailCommandOutput>;
474
+ /**
475
+ * deserializeAws_restJson1CreateAIGuardrailVersionCommand
476
+ */
477
+ export declare const de_CreateAIGuardrailVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIGuardrailVersionCommandOutput>;
415
478
  /**
416
479
  * deserializeAws_restJson1CreateAIPromptCommand
417
480
  */
@@ -472,6 +535,14 @@ export declare const de_DeleteAIAgentCommand: (output: __HttpResponse, context:
472
535
  * deserializeAws_restJson1DeleteAIAgentVersionCommand
473
536
  */
474
537
  export declare const de_DeleteAIAgentVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIAgentVersionCommandOutput>;
538
+ /**
539
+ * deserializeAws_restJson1DeleteAIGuardrailCommand
540
+ */
541
+ export declare const de_DeleteAIGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIGuardrailCommandOutput>;
542
+ /**
543
+ * deserializeAws_restJson1DeleteAIGuardrailVersionCommand
544
+ */
545
+ export declare const de_DeleteAIGuardrailVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIGuardrailVersionCommandOutput>;
475
546
  /**
476
547
  * deserializeAws_restJson1DeleteAIPromptCommand
477
548
  */
@@ -520,6 +591,10 @@ export declare const de_DeleteQuickResponseCommand: (output: __HttpResponse, con
520
591
  * deserializeAws_restJson1GetAIAgentCommand
521
592
  */
522
593
  export declare const de_GetAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAIAgentCommandOutput>;
594
+ /**
595
+ * deserializeAws_restJson1GetAIGuardrailCommand
596
+ */
597
+ export declare const de_GetAIGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAIGuardrailCommandOutput>;
523
598
  /**
524
599
  * deserializeAws_restJson1GetAIPromptCommand
525
600
  */
@@ -556,6 +631,10 @@ export declare const de_GetKnowledgeBaseCommand: (output: __HttpResponse, contex
556
631
  * deserializeAws_restJson1GetMessageTemplateCommand
557
632
  */
558
633
  export declare const de_GetMessageTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMessageTemplateCommandOutput>;
634
+ /**
635
+ * deserializeAws_restJson1GetNextMessageCommand
636
+ */
637
+ export declare const de_GetNextMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNextMessageCommandOutput>;
559
638
  /**
560
639
  * deserializeAws_restJson1GetQuickResponseCommand
561
640
  */
@@ -576,6 +655,14 @@ export declare const de_ListAIAgentsCommand: (output: __HttpResponse, context: _
576
655
  * deserializeAws_restJson1ListAIAgentVersionsCommand
577
656
  */
578
657
  export declare const de_ListAIAgentVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIAgentVersionsCommandOutput>;
658
+ /**
659
+ * deserializeAws_restJson1ListAIGuardrailsCommand
660
+ */
661
+ export declare const de_ListAIGuardrailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIGuardrailsCommandOutput>;
662
+ /**
663
+ * deserializeAws_restJson1ListAIGuardrailVersionsCommand
664
+ */
665
+ export declare const de_ListAIGuardrailVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIGuardrailVersionsCommandOutput>;
579
666
  /**
580
667
  * deserializeAws_restJson1ListAIPromptsCommand
581
668
  */
@@ -608,6 +695,10 @@ export declare const de_ListImportJobsCommand: (output: __HttpResponse, context:
608
695
  * deserializeAws_restJson1ListKnowledgeBasesCommand
609
696
  */
610
697
  export declare const de_ListKnowledgeBasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKnowledgeBasesCommandOutput>;
698
+ /**
699
+ * deserializeAws_restJson1ListMessagesCommand
700
+ */
701
+ export declare const de_ListMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMessagesCommandOutput>;
611
702
  /**
612
703
  * deserializeAws_restJson1ListMessageTemplatesCommand
613
704
  */
@@ -664,6 +755,10 @@ export declare const de_SearchQuickResponsesCommand: (output: __HttpResponse, co
664
755
  * deserializeAws_restJson1SearchSessionsCommand
665
756
  */
666
757
  export declare const de_SearchSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSessionsCommandOutput>;
758
+ /**
759
+ * deserializeAws_restJson1SendMessageCommand
760
+ */
761
+ export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
667
762
  /**
668
763
  * deserializeAws_restJson1StartContentUploadCommand
669
764
  */
@@ -684,6 +779,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
684
779
  * deserializeAws_restJson1UpdateAIAgentCommand
685
780
  */
686
781
  export declare const de_UpdateAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAIAgentCommandOutput>;
782
+ /**
783
+ * deserializeAws_restJson1UpdateAIGuardrailCommand
784
+ */
785
+ export declare const de_UpdateAIGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAIGuardrailCommandOutput>;
687
786
  /**
688
787
  * deserializeAws_restJson1UpdateAIPromptCommand
689
788
  */
@@ -11,6 +11,14 @@ import {
11
11
  CreateAIAgentVersionCommandInput,
12
12
  CreateAIAgentVersionCommandOutput,
13
13
  } from "./commands/CreateAIAgentVersionCommand";
14
+ import {
15
+ CreateAIGuardrailCommandInput,
16
+ CreateAIGuardrailCommandOutput,
17
+ } from "./commands/CreateAIGuardrailCommand";
18
+ import {
19
+ CreateAIGuardrailVersionCommandInput,
20
+ CreateAIGuardrailVersionCommandOutput,
21
+ } from "./commands/CreateAIGuardrailVersionCommand";
14
22
  import {
15
23
  CreateAIPromptCommandInput,
16
24
  CreateAIPromptCommandOutput,
@@ -71,6 +79,14 @@ import {
71
79
  DeleteAIAgentVersionCommandInput,
72
80
  DeleteAIAgentVersionCommandOutput,
73
81
  } from "./commands/DeleteAIAgentVersionCommand";
82
+ import {
83
+ DeleteAIGuardrailCommandInput,
84
+ DeleteAIGuardrailCommandOutput,
85
+ } from "./commands/DeleteAIGuardrailCommand";
86
+ import {
87
+ DeleteAIGuardrailVersionCommandInput,
88
+ DeleteAIGuardrailVersionCommandOutput,
89
+ } from "./commands/DeleteAIGuardrailVersionCommand";
74
90
  import {
75
91
  DeleteAIPromptCommandInput,
76
92
  DeleteAIPromptCommandOutput,
@@ -119,6 +135,10 @@ import {
119
135
  GetAIAgentCommandInput,
120
136
  GetAIAgentCommandOutput,
121
137
  } from "./commands/GetAIAgentCommand";
138
+ import {
139
+ GetAIGuardrailCommandInput,
140
+ GetAIGuardrailCommandOutput,
141
+ } from "./commands/GetAIGuardrailCommand";
122
142
  import {
123
143
  GetAIPromptCommandInput,
124
144
  GetAIPromptCommandOutput,
@@ -155,6 +175,10 @@ import {
155
175
  GetMessageTemplateCommandInput,
156
176
  GetMessageTemplateCommandOutput,
157
177
  } from "./commands/GetMessageTemplateCommand";
178
+ import {
179
+ GetNextMessageCommandInput,
180
+ GetNextMessageCommandOutput,
181
+ } from "./commands/GetNextMessageCommand";
158
182
  import {
159
183
  GetQuickResponseCommandInput,
160
184
  GetQuickResponseCommandOutput,
@@ -175,6 +199,14 @@ import {
175
199
  ListAIAgentVersionsCommandInput,
176
200
  ListAIAgentVersionsCommandOutput,
177
201
  } from "./commands/ListAIAgentVersionsCommand";
202
+ import {
203
+ ListAIGuardrailsCommandInput,
204
+ ListAIGuardrailsCommandOutput,
205
+ } from "./commands/ListAIGuardrailsCommand";
206
+ import {
207
+ ListAIGuardrailVersionsCommandInput,
208
+ ListAIGuardrailVersionsCommandOutput,
209
+ } from "./commands/ListAIGuardrailVersionsCommand";
178
210
  import {
179
211
  ListAIPromptsCommandInput,
180
212
  ListAIPromptsCommandOutput,
@@ -207,6 +239,10 @@ import {
207
239
  ListKnowledgeBasesCommandInput,
208
240
  ListKnowledgeBasesCommandOutput,
209
241
  } from "./commands/ListKnowledgeBasesCommand";
242
+ import {
243
+ ListMessagesCommandInput,
244
+ ListMessagesCommandOutput,
245
+ } from "./commands/ListMessagesCommand";
210
246
  import {
211
247
  ListMessageTemplatesCommandInput,
212
248
  ListMessageTemplatesCommandOutput,
@@ -263,6 +299,10 @@ import {
263
299
  SearchSessionsCommandInput,
264
300
  SearchSessionsCommandOutput,
265
301
  } from "./commands/SearchSessionsCommand";
302
+ import {
303
+ SendMessageCommandInput,
304
+ SendMessageCommandOutput,
305
+ } from "./commands/SendMessageCommand";
266
306
  import {
267
307
  StartContentUploadCommandInput,
268
308
  StartContentUploadCommandOutput,
@@ -283,6 +323,10 @@ import {
283
323
  UpdateAIAgentCommandInput,
284
324
  UpdateAIAgentCommandOutput,
285
325
  } from "./commands/UpdateAIAgentCommand";
326
+ import {
327
+ UpdateAIGuardrailCommandInput,
328
+ UpdateAIGuardrailCommandOutput,
329
+ } from "./commands/UpdateAIGuardrailCommand";
286
330
  import {
287
331
  UpdateAIPromptCommandInput,
288
332
  UpdateAIPromptCommandOutput,
@@ -360,6 +404,32 @@ export interface QConnect {
360
404
  options: __HttpHandlerOptions,
361
405
  cb: (err: any, data?: CreateAIAgentVersionCommandOutput) => void
362
406
  ): void;
407
+ createAIGuardrail(
408
+ args: CreateAIGuardrailCommandInput,
409
+ options?: __HttpHandlerOptions
410
+ ): Promise<CreateAIGuardrailCommandOutput>;
411
+ createAIGuardrail(
412
+ args: CreateAIGuardrailCommandInput,
413
+ cb: (err: any, data?: CreateAIGuardrailCommandOutput) => void
414
+ ): void;
415
+ createAIGuardrail(
416
+ args: CreateAIGuardrailCommandInput,
417
+ options: __HttpHandlerOptions,
418
+ cb: (err: any, data?: CreateAIGuardrailCommandOutput) => void
419
+ ): void;
420
+ createAIGuardrailVersion(
421
+ args: CreateAIGuardrailVersionCommandInput,
422
+ options?: __HttpHandlerOptions
423
+ ): Promise<CreateAIGuardrailVersionCommandOutput>;
424
+ createAIGuardrailVersion(
425
+ args: CreateAIGuardrailVersionCommandInput,
426
+ cb: (err: any, data?: CreateAIGuardrailVersionCommandOutput) => void
427
+ ): void;
428
+ createAIGuardrailVersion(
429
+ args: CreateAIGuardrailVersionCommandInput,
430
+ options: __HttpHandlerOptions,
431
+ cb: (err: any, data?: CreateAIGuardrailVersionCommandOutput) => void
432
+ ): void;
363
433
  createAIPrompt(
364
434
  args: CreateAIPromptCommandInput,
365
435
  options?: __HttpHandlerOptions
@@ -555,6 +625,32 @@ export interface QConnect {
555
625
  options: __HttpHandlerOptions,
556
626
  cb: (err: any, data?: DeleteAIAgentVersionCommandOutput) => void
557
627
  ): void;
628
+ deleteAIGuardrail(
629
+ args: DeleteAIGuardrailCommandInput,
630
+ options?: __HttpHandlerOptions
631
+ ): Promise<DeleteAIGuardrailCommandOutput>;
632
+ deleteAIGuardrail(
633
+ args: DeleteAIGuardrailCommandInput,
634
+ cb: (err: any, data?: DeleteAIGuardrailCommandOutput) => void
635
+ ): void;
636
+ deleteAIGuardrail(
637
+ args: DeleteAIGuardrailCommandInput,
638
+ options: __HttpHandlerOptions,
639
+ cb: (err: any, data?: DeleteAIGuardrailCommandOutput) => void
640
+ ): void;
641
+ deleteAIGuardrailVersion(
642
+ args: DeleteAIGuardrailVersionCommandInput,
643
+ options?: __HttpHandlerOptions
644
+ ): Promise<DeleteAIGuardrailVersionCommandOutput>;
645
+ deleteAIGuardrailVersion(
646
+ args: DeleteAIGuardrailVersionCommandInput,
647
+ cb: (err: any, data?: DeleteAIGuardrailVersionCommandOutput) => void
648
+ ): void;
649
+ deleteAIGuardrailVersion(
650
+ args: DeleteAIGuardrailVersionCommandInput,
651
+ options: __HttpHandlerOptions,
652
+ cb: (err: any, data?: DeleteAIGuardrailVersionCommandOutput) => void
653
+ ): void;
558
654
  deleteAIPrompt(
559
655
  args: DeleteAIPromptCommandInput,
560
656
  options?: __HttpHandlerOptions
@@ -711,6 +807,19 @@ export interface QConnect {
711
807
  options: __HttpHandlerOptions,
712
808
  cb: (err: any, data?: GetAIAgentCommandOutput) => void
713
809
  ): void;
810
+ getAIGuardrail(
811
+ args: GetAIGuardrailCommandInput,
812
+ options?: __HttpHandlerOptions
813
+ ): Promise<GetAIGuardrailCommandOutput>;
814
+ getAIGuardrail(
815
+ args: GetAIGuardrailCommandInput,
816
+ cb: (err: any, data?: GetAIGuardrailCommandOutput) => void
817
+ ): void;
818
+ getAIGuardrail(
819
+ args: GetAIGuardrailCommandInput,
820
+ options: __HttpHandlerOptions,
821
+ cb: (err: any, data?: GetAIGuardrailCommandOutput) => void
822
+ ): void;
714
823
  getAIPrompt(
715
824
  args: GetAIPromptCommandInput,
716
825
  options?: __HttpHandlerOptions
@@ -828,6 +937,19 @@ export interface QConnect {
828
937
  options: __HttpHandlerOptions,
829
938
  cb: (err: any, data?: GetMessageTemplateCommandOutput) => void
830
939
  ): void;
940
+ getNextMessage(
941
+ args: GetNextMessageCommandInput,
942
+ options?: __HttpHandlerOptions
943
+ ): Promise<GetNextMessageCommandOutput>;
944
+ getNextMessage(
945
+ args: GetNextMessageCommandInput,
946
+ cb: (err: any, data?: GetNextMessageCommandOutput) => void
947
+ ): void;
948
+ getNextMessage(
949
+ args: GetNextMessageCommandInput,
950
+ options: __HttpHandlerOptions,
951
+ cb: (err: any, data?: GetNextMessageCommandOutput) => void
952
+ ): void;
831
953
  getQuickResponse(
832
954
  args: GetQuickResponseCommandInput,
833
955
  options?: __HttpHandlerOptions
@@ -893,6 +1015,32 @@ export interface QConnect {
893
1015
  options: __HttpHandlerOptions,
894
1016
  cb: (err: any, data?: ListAIAgentVersionsCommandOutput) => void
895
1017
  ): void;
1018
+ listAIGuardrails(
1019
+ args: ListAIGuardrailsCommandInput,
1020
+ options?: __HttpHandlerOptions
1021
+ ): Promise<ListAIGuardrailsCommandOutput>;
1022
+ listAIGuardrails(
1023
+ args: ListAIGuardrailsCommandInput,
1024
+ cb: (err: any, data?: ListAIGuardrailsCommandOutput) => void
1025
+ ): void;
1026
+ listAIGuardrails(
1027
+ args: ListAIGuardrailsCommandInput,
1028
+ options: __HttpHandlerOptions,
1029
+ cb: (err: any, data?: ListAIGuardrailsCommandOutput) => void
1030
+ ): void;
1031
+ listAIGuardrailVersions(
1032
+ args: ListAIGuardrailVersionsCommandInput,
1033
+ options?: __HttpHandlerOptions
1034
+ ): Promise<ListAIGuardrailVersionsCommandOutput>;
1035
+ listAIGuardrailVersions(
1036
+ args: ListAIGuardrailVersionsCommandInput,
1037
+ cb: (err: any, data?: ListAIGuardrailVersionsCommandOutput) => void
1038
+ ): void;
1039
+ listAIGuardrailVersions(
1040
+ args: ListAIGuardrailVersionsCommandInput,
1041
+ options: __HttpHandlerOptions,
1042
+ cb: (err: any, data?: ListAIGuardrailVersionsCommandOutput) => void
1043
+ ): void;
896
1044
  listAIPrompts(
897
1045
  args: ListAIPromptsCommandInput,
898
1046
  options?: __HttpHandlerOptions
@@ -999,6 +1147,19 @@ export interface QConnect {
999
1147
  options: __HttpHandlerOptions,
1000
1148
  cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void
1001
1149
  ): void;
1150
+ listMessages(
1151
+ args: ListMessagesCommandInput,
1152
+ options?: __HttpHandlerOptions
1153
+ ): Promise<ListMessagesCommandOutput>;
1154
+ listMessages(
1155
+ args: ListMessagesCommandInput,
1156
+ cb: (err: any, data?: ListMessagesCommandOutput) => void
1157
+ ): void;
1158
+ listMessages(
1159
+ args: ListMessagesCommandInput,
1160
+ options: __HttpHandlerOptions,
1161
+ cb: (err: any, data?: ListMessagesCommandOutput) => void
1162
+ ): void;
1002
1163
  listMessageTemplates(
1003
1164
  args: ListMessageTemplatesCommandInput,
1004
1165
  options?: __HttpHandlerOptions
@@ -1181,6 +1342,19 @@ export interface QConnect {
1181
1342
  options: __HttpHandlerOptions,
1182
1343
  cb: (err: any, data?: SearchSessionsCommandOutput) => void
1183
1344
  ): void;
1345
+ sendMessage(
1346
+ args: SendMessageCommandInput,
1347
+ options?: __HttpHandlerOptions
1348
+ ): Promise<SendMessageCommandOutput>;
1349
+ sendMessage(
1350
+ args: SendMessageCommandInput,
1351
+ cb: (err: any, data?: SendMessageCommandOutput) => void
1352
+ ): void;
1353
+ sendMessage(
1354
+ args: SendMessageCommandInput,
1355
+ options: __HttpHandlerOptions,
1356
+ cb: (err: any, data?: SendMessageCommandOutput) => void
1357
+ ): void;
1184
1358
  startContentUpload(
1185
1359
  args: StartContentUploadCommandInput,
1186
1360
  options?: __HttpHandlerOptions
@@ -1246,6 +1420,19 @@ export interface QConnect {
1246
1420
  options: __HttpHandlerOptions,
1247
1421
  cb: (err: any, data?: UpdateAIAgentCommandOutput) => void
1248
1422
  ): void;
1423
+ updateAIGuardrail(
1424
+ args: UpdateAIGuardrailCommandInput,
1425
+ options?: __HttpHandlerOptions
1426
+ ): Promise<UpdateAIGuardrailCommandOutput>;
1427
+ updateAIGuardrail(
1428
+ args: UpdateAIGuardrailCommandInput,
1429
+ cb: (err: any, data?: UpdateAIGuardrailCommandOutput) => void
1430
+ ): void;
1431
+ updateAIGuardrail(
1432
+ args: UpdateAIGuardrailCommandInput,
1433
+ options: __HttpHandlerOptions,
1434
+ cb: (err: any, data?: UpdateAIGuardrailCommandOutput) => void
1435
+ ): void;
1249
1436
  updateAIPrompt(
1250
1437
  args: UpdateAIPromptCommandInput,
1251
1438
  options?: __HttpHandlerOptions