@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,224 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateAIGuardrailRequest, UpdateAIGuardrailResponse } from "../models/models_0";
4
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateAIGuardrailCommand}.
14
+ */
15
+ export interface UpdateAIGuardrailCommandInput extends UpdateAIGuardrailRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateAIGuardrailCommand}.
21
+ */
22
+ export interface UpdateAIGuardrailCommandOutput extends UpdateAIGuardrailResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateAIGuardrailCommand_base: {
25
+ new (input: UpdateAIGuardrailCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAIGuardrailCommandInput, UpdateAIGuardrailCommandOutput, QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateAIGuardrailCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAIGuardrailCommandInput, UpdateAIGuardrailCommandOutput, QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an AI Guardrail.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { QConnectClient, UpdateAIGuardrailCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
35
+ * // const { QConnectClient, UpdateAIGuardrailCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
36
+ * const client = new QConnectClient(config);
37
+ * const input = { // UpdateAIGuardrailRequest
38
+ * clientToken: "STRING_VALUE",
39
+ * assistantId: "STRING_VALUE", // required
40
+ * aiGuardrailId: "STRING_VALUE", // required
41
+ * visibilityStatus: "STRING_VALUE", // required
42
+ * blockedInputMessaging: "STRING_VALUE", // required
43
+ * blockedOutputsMessaging: "STRING_VALUE", // required
44
+ * description: "STRING_VALUE",
45
+ * topicPolicyConfig: { // AIGuardrailTopicPolicyConfig
46
+ * topicsConfig: [ // GuardrailTopicsConfig // required
47
+ * { // GuardrailTopicConfig
48
+ * name: "STRING_VALUE", // required
49
+ * definition: "STRING_VALUE", // required
50
+ * examples: [ // GuardrailTopicExamples
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * type: "STRING_VALUE", // required
54
+ * },
55
+ * ],
56
+ * },
57
+ * contentPolicyConfig: { // AIGuardrailContentPolicyConfig
58
+ * filtersConfig: [ // GuardrailContentFiltersConfig // required
59
+ * { // GuardrailContentFilterConfig
60
+ * type: "STRING_VALUE", // required
61
+ * inputStrength: "STRING_VALUE", // required
62
+ * outputStrength: "STRING_VALUE", // required
63
+ * },
64
+ * ],
65
+ * },
66
+ * wordPolicyConfig: { // AIGuardrailWordPolicyConfig
67
+ * wordsConfig: [ // GuardrailWordsConfig
68
+ * { // GuardrailWordConfig
69
+ * text: "STRING_VALUE", // required
70
+ * },
71
+ * ],
72
+ * managedWordListsConfig: [ // GuardrailManagedWordListsConfig
73
+ * { // GuardrailManagedWordsConfig
74
+ * type: "STRING_VALUE", // required
75
+ * },
76
+ * ],
77
+ * },
78
+ * sensitiveInformationPolicyConfig: { // AIGuardrailSensitiveInformationPolicyConfig
79
+ * piiEntitiesConfig: [ // GuardrailPiiEntitiesConfig
80
+ * { // GuardrailPiiEntityConfig
81
+ * type: "STRING_VALUE", // required
82
+ * action: "STRING_VALUE", // required
83
+ * },
84
+ * ],
85
+ * regexesConfig: [ // GuardrailRegexesConfig
86
+ * { // GuardrailRegexConfig
87
+ * name: "STRING_VALUE", // required
88
+ * description: "STRING_VALUE",
89
+ * pattern: "STRING_VALUE", // required
90
+ * action: "STRING_VALUE", // required
91
+ * },
92
+ * ],
93
+ * },
94
+ * contextualGroundingPolicyConfig: { // AIGuardrailContextualGroundingPolicyConfig
95
+ * filtersConfig: [ // GuardrailContextualGroundingFiltersConfig // required
96
+ * { // GuardrailContextualGroundingFilterConfig
97
+ * type: "STRING_VALUE", // required
98
+ * threshold: Number("double"), // required
99
+ * },
100
+ * ],
101
+ * },
102
+ * };
103
+ * const command = new UpdateAIGuardrailCommand(input);
104
+ * const response = await client.send(command);
105
+ * // { // UpdateAIGuardrailResponse
106
+ * // aiGuardrail: { // AIGuardrailData
107
+ * // assistantId: "STRING_VALUE", // required
108
+ * // assistantArn: "STRING_VALUE", // required
109
+ * // aiGuardrailArn: "STRING_VALUE", // required
110
+ * // aiGuardrailId: "STRING_VALUE", // required
111
+ * // name: "STRING_VALUE", // required
112
+ * // visibilityStatus: "STRING_VALUE", // required
113
+ * // blockedInputMessaging: "STRING_VALUE", // required
114
+ * // blockedOutputsMessaging: "STRING_VALUE", // required
115
+ * // description: "STRING_VALUE",
116
+ * // topicPolicyConfig: { // AIGuardrailTopicPolicyConfig
117
+ * // topicsConfig: [ // GuardrailTopicsConfig // required
118
+ * // { // GuardrailTopicConfig
119
+ * // name: "STRING_VALUE", // required
120
+ * // definition: "STRING_VALUE", // required
121
+ * // examples: [ // GuardrailTopicExamples
122
+ * // "STRING_VALUE",
123
+ * // ],
124
+ * // type: "STRING_VALUE", // required
125
+ * // },
126
+ * // ],
127
+ * // },
128
+ * // contentPolicyConfig: { // AIGuardrailContentPolicyConfig
129
+ * // filtersConfig: [ // GuardrailContentFiltersConfig // required
130
+ * // { // GuardrailContentFilterConfig
131
+ * // type: "STRING_VALUE", // required
132
+ * // inputStrength: "STRING_VALUE", // required
133
+ * // outputStrength: "STRING_VALUE", // required
134
+ * // },
135
+ * // ],
136
+ * // },
137
+ * // wordPolicyConfig: { // AIGuardrailWordPolicyConfig
138
+ * // wordsConfig: [ // GuardrailWordsConfig
139
+ * // { // GuardrailWordConfig
140
+ * // text: "STRING_VALUE", // required
141
+ * // },
142
+ * // ],
143
+ * // managedWordListsConfig: [ // GuardrailManagedWordListsConfig
144
+ * // { // GuardrailManagedWordsConfig
145
+ * // type: "STRING_VALUE", // required
146
+ * // },
147
+ * // ],
148
+ * // },
149
+ * // sensitiveInformationPolicyConfig: { // AIGuardrailSensitiveInformationPolicyConfig
150
+ * // piiEntitiesConfig: [ // GuardrailPiiEntitiesConfig
151
+ * // { // GuardrailPiiEntityConfig
152
+ * // type: "STRING_VALUE", // required
153
+ * // action: "STRING_VALUE", // required
154
+ * // },
155
+ * // ],
156
+ * // regexesConfig: [ // GuardrailRegexesConfig
157
+ * // { // GuardrailRegexConfig
158
+ * // name: "STRING_VALUE", // required
159
+ * // description: "STRING_VALUE",
160
+ * // pattern: "STRING_VALUE", // required
161
+ * // action: "STRING_VALUE", // required
162
+ * // },
163
+ * // ],
164
+ * // },
165
+ * // contextualGroundingPolicyConfig: { // AIGuardrailContextualGroundingPolicyConfig
166
+ * // filtersConfig: [ // GuardrailContextualGroundingFiltersConfig // required
167
+ * // { // GuardrailContextualGroundingFilterConfig
168
+ * // type: "STRING_VALUE", // required
169
+ * // threshold: Number("double"), // required
170
+ * // },
171
+ * // ],
172
+ * // },
173
+ * // tags: { // Tags
174
+ * // "<keys>": "STRING_VALUE",
175
+ * // },
176
+ * // status: "STRING_VALUE",
177
+ * // modifiedTime: new Date("TIMESTAMP"),
178
+ * // },
179
+ * // };
180
+ *
181
+ * ```
182
+ *
183
+ * @param UpdateAIGuardrailCommandInput - {@link UpdateAIGuardrailCommandInput}
184
+ * @returns {@link UpdateAIGuardrailCommandOutput}
185
+ * @see {@link UpdateAIGuardrailCommandInput} for command's `input` shape.
186
+ * @see {@link UpdateAIGuardrailCommandOutput} for command's `response` shape.
187
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
188
+ *
189
+ * @throws {@link AccessDeniedException} (client fault)
190
+ * <p>You do not have sufficient access to perform this action.</p>
191
+ *
192
+ * @throws {@link ConflictException} (client fault)
193
+ * <p>The request could not be processed because of conflict in the current state of the
194
+ * resource. For example, if you're using a <code>Create</code> API (such as
195
+ * <code>CreateAssistant</code>) that accepts name, a conflicting resource (usually with the
196
+ * same name) is being created or mutated.</p>
197
+ *
198
+ * @throws {@link ResourceNotFoundException} (client fault)
199
+ * <p>The specified resource does not exist.</p>
200
+ *
201
+ * @throws {@link ThrottlingException} (client fault)
202
+ * <p>The throttling limit has been exceeded.</p>
203
+ *
204
+ * @throws {@link ValidationException} (client fault)
205
+ * <p>The input fails to satisfy the constraints specified by a service.</p>
206
+ *
207
+ * @throws {@link QConnectServiceException}
208
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
209
+ *
210
+ * @public
211
+ */
212
+ export declare class UpdateAIGuardrailCommand extends UpdateAIGuardrailCommand_base {
213
+ /** @internal type navigation helper, not in runtime. */
214
+ protected static __types: {
215
+ api: {
216
+ input: UpdateAIGuardrailRequest;
217
+ output: UpdateAIGuardrailResponse;
218
+ };
219
+ sdk: {
220
+ input: UpdateAIGuardrailCommandInput;
221
+ output: UpdateAIGuardrailCommandOutput;
222
+ };
223
+ };
224
+ }
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateMessageTemplateRequest, UpdateMessageTemplateResponse } from "../models/models_0";
3
+ import { UpdateMessageTemplateRequest, UpdateMessageTemplateResponse } from "../models/models_1";
4
4
  import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
5
5
  /**
6
6
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateMessageTemplateMetadataRequest, UpdateMessageTemplateMetadataResponse } from "../models/models_0";
3
+ import { UpdateMessageTemplateMetadataRequest, UpdateMessageTemplateMetadataResponse } from "../models/models_1";
4
4
  import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
5
5
  /**
6
6
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_0";
3
+ import { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_1";
4
4
  import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
5
5
  /**
6
6
  * @public
@@ -1,6 +1,8 @@
1
1
  export * from "./ActivateMessageTemplateCommand";
2
2
  export * from "./CreateAIAgentCommand";
3
3
  export * from "./CreateAIAgentVersionCommand";
4
+ export * from "./CreateAIGuardrailCommand";
5
+ export * from "./CreateAIGuardrailVersionCommand";
4
6
  export * from "./CreateAIPromptCommand";
5
7
  export * from "./CreateAIPromptVersionCommand";
6
8
  export * from "./CreateAssistantAssociationCommand";
@@ -16,6 +18,8 @@ export * from "./CreateSessionCommand";
16
18
  export * from "./DeactivateMessageTemplateCommand";
17
19
  export * from "./DeleteAIAgentCommand";
18
20
  export * from "./DeleteAIAgentVersionCommand";
21
+ export * from "./DeleteAIGuardrailCommand";
22
+ export * from "./DeleteAIGuardrailVersionCommand";
19
23
  export * from "./DeleteAIPromptCommand";
20
24
  export * from "./DeleteAIPromptVersionCommand";
21
25
  export * from "./DeleteAssistantAssociationCommand";
@@ -28,6 +32,7 @@ export * from "./DeleteMessageTemplateAttachmentCommand";
28
32
  export * from "./DeleteMessageTemplateCommand";
29
33
  export * from "./DeleteQuickResponseCommand";
30
34
  export * from "./GetAIAgentCommand";
35
+ export * from "./GetAIGuardrailCommand";
31
36
  export * from "./GetAIPromptCommand";
32
37
  export * from "./GetAssistantAssociationCommand";
33
38
  export * from "./GetAssistantCommand";
@@ -37,11 +42,14 @@ export * from "./GetContentSummaryCommand";
37
42
  export * from "./GetImportJobCommand";
38
43
  export * from "./GetKnowledgeBaseCommand";
39
44
  export * from "./GetMessageTemplateCommand";
45
+ export * from "./GetNextMessageCommand";
40
46
  export * from "./GetQuickResponseCommand";
41
47
  export * from "./GetRecommendationsCommand";
42
48
  export * from "./GetSessionCommand";
43
49
  export * from "./ListAIAgentVersionsCommand";
44
50
  export * from "./ListAIAgentsCommand";
51
+ export * from "./ListAIGuardrailVersionsCommand";
52
+ export * from "./ListAIGuardrailsCommand";
45
53
  export * from "./ListAIPromptVersionsCommand";
46
54
  export * from "./ListAIPromptsCommand";
47
55
  export * from "./ListAssistantAssociationsCommand";
@@ -52,6 +60,7 @@ export * from "./ListImportJobsCommand";
52
60
  export * from "./ListKnowledgeBasesCommand";
53
61
  export * from "./ListMessageTemplateVersionsCommand";
54
62
  export * from "./ListMessageTemplatesCommand";
63
+ export * from "./ListMessagesCommand";
55
64
  export * from "./ListQuickResponsesCommand";
56
65
  export * from "./ListTagsForResourceCommand";
57
66
  export * from "./NotifyRecommendationsReceivedCommand";
@@ -64,11 +73,13 @@ export * from "./SearchContentCommand";
64
73
  export * from "./SearchMessageTemplatesCommand";
65
74
  export * from "./SearchQuickResponsesCommand";
66
75
  export * from "./SearchSessionsCommand";
76
+ export * from "./SendMessageCommand";
67
77
  export * from "./StartContentUploadCommand";
68
78
  export * from "./StartImportJobCommand";
69
79
  export * from "./TagResourceCommand";
70
80
  export * from "./UntagResourceCommand";
71
81
  export * from "./UpdateAIAgentCommand";
82
+ export * from "./UpdateAIGuardrailCommand";
72
83
  export * from "./UpdateAIPromptCommand";
73
84
  export * from "./UpdateAssistantAIAgentCommand";
74
85
  export * from "./UpdateContentCommand";