@aws-sdk/client-kendra 3.934.0 → 3.935.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 (53) hide show
  1. package/dist-cjs/index.js +396 -396
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +382 -0
  4. package/dist-es/models/errors.js +171 -0
  5. package/dist-es/models/models_0.js +1 -525
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/GetQuerySuggestionsCommand.d.ts +1 -2
  8. package/dist-types/commands/QueryCommand.d.ts +1 -1
  9. package/dist-types/commands/RetrieveCommand.d.ts +1 -1
  10. package/dist-types/commands/StartDataSourceSyncJobCommand.d.ts +1 -1
  11. package/dist-types/commands/StopDataSourceSyncJobCommand.d.ts +1 -1
  12. package/dist-types/commands/SubmitFeedbackCommand.d.ts +1 -1
  13. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  14. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +1 -1
  16. package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateExperienceCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateFeaturedResultsSetCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateIndexCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +1 -1
  21. package/dist-types/commands/UpdateQuerySuggestionsConfigCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdateThesaurusCommand.d.ts +1 -1
  23. package/dist-types/index.d.ts +3 -1
  24. package/dist-types/models/enums.d.ts +878 -0
  25. package/dist-types/models/errors.d.ts +185 -0
  26. package/dist-types/models/models_0.d.ts +1402 -1004
  27. package/dist-types/ts3.4/commands/GetQuerySuggestionsCommand.d.ts +4 -2
  28. package/dist-types/ts3.4/commands/QueryCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/StartDataSourceSyncJobCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/StopDataSourceSyncJobCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/UpdateAccessControlConfigurationCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/UpdateExperienceCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/UpdateFeaturedResultsSetCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/UpdateIndexCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateQuerySuggestionsConfigCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/UpdateThesaurusCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/index.d.ts +3 -1
  44. package/dist-types/ts3.4/models/enums.d.ts +485 -0
  45. package/dist-types/ts3.4/models/errors.d.ts +101 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +322 -559
  47. package/package.json +12 -12
  48. package/dist-es/models/index.js +0 -2
  49. package/dist-es/models/models_1.js +0 -29
  50. package/dist-types/models/index.d.ts +0 -2
  51. package/dist-types/models/models_1.d.ts +0 -1462
  52. package/dist-types/ts3.4/models/index.d.ts +0 -2
  53. package/dist-types/ts3.4/models/models_1.d.ts +0 -321
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./KendraClient";
2
2
  export * from "./Kendra";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { KendraServiceException } from "./models/KendraServiceException";
@@ -0,0 +1,382 @@
1
+ export const HighlightType = {
2
+ STANDARD: "STANDARD",
3
+ THESAURUS_SYNONYM: "THESAURUS_SYNONYM",
4
+ };
5
+ export const AdditionalResultAttributeValueType = {
6
+ TEXT_WITH_HIGHLIGHTS_VALUE: "TEXT_WITH_HIGHLIGHTS_VALUE",
7
+ };
8
+ export const AlfrescoEntity = {
9
+ blog: "blog",
10
+ documentLibrary: "documentLibrary",
11
+ wiki: "wiki",
12
+ };
13
+ export const EntityType = {
14
+ GROUP: "GROUP",
15
+ USER: "USER",
16
+ };
17
+ export const Persona = {
18
+ OWNER: "OWNER",
19
+ VIEWER: "VIEWER",
20
+ };
21
+ export const AttributeSuggestionsMode = {
22
+ ACTIVE: "ACTIVE",
23
+ INACTIVE: "INACTIVE",
24
+ };
25
+ export const ErrorCode = {
26
+ INTERNAL_ERROR: "InternalError",
27
+ INVALID_REQUEST: "InvalidRequest",
28
+ };
29
+ export const DocumentStatus = {
30
+ FAILED: "FAILED",
31
+ INDEXED: "INDEXED",
32
+ NOT_FOUND: "NOT_FOUND",
33
+ PROCESSING: "PROCESSING",
34
+ UPDATED: "UPDATED",
35
+ UPDATE_FAILED: "UPDATE_FAILED",
36
+ };
37
+ export const ConditionOperator = {
38
+ BeginsWith: "BeginsWith",
39
+ Contains: "Contains",
40
+ Equals: "Equals",
41
+ Exists: "Exists",
42
+ GreaterThan: "GreaterThan",
43
+ GreaterThanOrEquals: "GreaterThanOrEquals",
44
+ LessThan: "LessThan",
45
+ LessThanOrEquals: "LessThanOrEquals",
46
+ NotContains: "NotContains",
47
+ NotEquals: "NotEquals",
48
+ NotExists: "NotExists",
49
+ };
50
+ export const ReadAccessType = {
51
+ ALLOW: "ALLOW",
52
+ DENY: "DENY",
53
+ };
54
+ export const PrincipalType = {
55
+ GROUP: "GROUP",
56
+ USER: "USER",
57
+ };
58
+ export const ContentType = {
59
+ CSV: "CSV",
60
+ HTML: "HTML",
61
+ JSON: "JSON",
62
+ MD: "MD",
63
+ MS_EXCEL: "MS_EXCEL",
64
+ MS_WORD: "MS_WORD",
65
+ PDF: "PDF",
66
+ PLAIN_TEXT: "PLAIN_TEXT",
67
+ PPT: "PPT",
68
+ RTF: "RTF",
69
+ XML: "XML",
70
+ XSLT: "XSLT",
71
+ };
72
+ export const ConfluenceAttachmentFieldName = {
73
+ AUTHOR: "AUTHOR",
74
+ CONTENT_TYPE: "CONTENT_TYPE",
75
+ CREATED_DATE: "CREATED_DATE",
76
+ DISPLAY_URL: "DISPLAY_URL",
77
+ FILE_SIZE: "FILE_SIZE",
78
+ ITEM_TYPE: "ITEM_TYPE",
79
+ PARENT_ID: "PARENT_ID",
80
+ SPACE_KEY: "SPACE_KEY",
81
+ SPACE_NAME: "SPACE_NAME",
82
+ URL: "URL",
83
+ VERSION: "VERSION",
84
+ };
85
+ export const ConfluenceAuthenticationType = {
86
+ HTTP_BASIC: "HTTP_BASIC",
87
+ PAT: "PAT",
88
+ };
89
+ export const ConfluenceBlogFieldName = {
90
+ AUTHOR: "AUTHOR",
91
+ DISPLAY_URL: "DISPLAY_URL",
92
+ ITEM_TYPE: "ITEM_TYPE",
93
+ LABELS: "LABELS",
94
+ PUBLISH_DATE: "PUBLISH_DATE",
95
+ SPACE_KEY: "SPACE_KEY",
96
+ SPACE_NAME: "SPACE_NAME",
97
+ URL: "URL",
98
+ VERSION: "VERSION",
99
+ };
100
+ export const ConfluencePageFieldName = {
101
+ AUTHOR: "AUTHOR",
102
+ CONTENT_STATUS: "CONTENT_STATUS",
103
+ CREATED_DATE: "CREATED_DATE",
104
+ DISPLAY_URL: "DISPLAY_URL",
105
+ ITEM_TYPE: "ITEM_TYPE",
106
+ LABELS: "LABELS",
107
+ MODIFIED_DATE: "MODIFIED_DATE",
108
+ PARENT_ID: "PARENT_ID",
109
+ SPACE_KEY: "SPACE_KEY",
110
+ SPACE_NAME: "SPACE_NAME",
111
+ URL: "URL",
112
+ VERSION: "VERSION",
113
+ };
114
+ export const ConfluenceSpaceFieldName = {
115
+ DISPLAY_URL: "DISPLAY_URL",
116
+ ITEM_TYPE: "ITEM_TYPE",
117
+ SPACE_KEY: "SPACE_KEY",
118
+ URL: "URL",
119
+ };
120
+ export const ConfluenceVersion = {
121
+ CLOUD: "CLOUD",
122
+ SERVER: "SERVER",
123
+ };
124
+ export const DatabaseEngineType = {
125
+ RDS_AURORA_MYSQL: "RDS_AURORA_MYSQL",
126
+ RDS_AURORA_POSTGRESQL: "RDS_AURORA_POSTGRESQL",
127
+ RDS_MYSQL: "RDS_MYSQL",
128
+ RDS_POSTGRESQL: "RDS_POSTGRESQL",
129
+ };
130
+ export const QueryIdentifiersEnclosingOption = {
131
+ DOUBLE_QUOTES: "DOUBLE_QUOTES",
132
+ NONE: "NONE",
133
+ };
134
+ export const FsxFileSystemType = {
135
+ WINDOWS: "WINDOWS",
136
+ };
137
+ export const Type = {
138
+ ON_PREMISE: "ON_PREMISE",
139
+ SAAS: "SAAS",
140
+ };
141
+ export const IssueSubEntity = {
142
+ ATTACHMENTS: "ATTACHMENTS",
143
+ COMMENTS: "COMMENTS",
144
+ WORKLOGS: "WORKLOGS",
145
+ };
146
+ export const SalesforceChatterFeedIncludeFilterType = {
147
+ ACTIVE_USER: "ACTIVE_USER",
148
+ STANDARD_USER: "STANDARD_USER",
149
+ };
150
+ export const SalesforceKnowledgeArticleState = {
151
+ ARCHIVED: "ARCHIVED",
152
+ DRAFT: "DRAFT",
153
+ PUBLISHED: "PUBLISHED",
154
+ };
155
+ export const SalesforceStandardObjectName = {
156
+ ACCOUNT: "ACCOUNT",
157
+ CAMPAIGN: "CAMPAIGN",
158
+ CASE: "CASE",
159
+ CONTACT: "CONTACT",
160
+ CONTRACT: "CONTRACT",
161
+ DOCUMENT: "DOCUMENT",
162
+ GROUP: "GROUP",
163
+ IDEA: "IDEA",
164
+ LEAD: "LEAD",
165
+ OPPORTUNITY: "OPPORTUNITY",
166
+ PARTNER: "PARTNER",
167
+ PRICEBOOK: "PRICEBOOK",
168
+ PRODUCT: "PRODUCT",
169
+ PROFILE: "PROFILE",
170
+ SOLUTION: "SOLUTION",
171
+ TASK: "TASK",
172
+ USER: "USER",
173
+ };
174
+ export const ServiceNowAuthenticationType = {
175
+ HTTP_BASIC: "HTTP_BASIC",
176
+ OAUTH2: "OAUTH2",
177
+ };
178
+ export const ServiceNowBuildVersionType = {
179
+ LONDON: "LONDON",
180
+ OTHERS: "OTHERS",
181
+ };
182
+ export const SharePointOnlineAuthenticationType = {
183
+ HTTP_BASIC: "HTTP_BASIC",
184
+ OAUTH2: "OAUTH2",
185
+ };
186
+ export const SharePointVersion = {
187
+ SHAREPOINT_2013: "SHAREPOINT_2013",
188
+ SHAREPOINT_2016: "SHAREPOINT_2016",
189
+ SHAREPOINT_2019: "SHAREPOINT_2019",
190
+ SHAREPOINT_ONLINE: "SHAREPOINT_ONLINE",
191
+ };
192
+ export const SlackEntity = {
193
+ DIRECT_MESSAGE: "DIRECT_MESSAGE",
194
+ GROUP_MESSAGE: "GROUP_MESSAGE",
195
+ PRIVATE_CHANNEL: "PRIVATE_CHANNEL",
196
+ PUBLIC_CHANNEL: "PUBLIC_CHANNEL",
197
+ };
198
+ export const WebCrawlerMode = {
199
+ EVERYTHING: "EVERYTHING",
200
+ HOST_ONLY: "HOST_ONLY",
201
+ SUBDOMAINS: "SUBDOMAINS",
202
+ };
203
+ export const DataSourceType = {
204
+ ALFRESCO: "ALFRESCO",
205
+ BOX: "BOX",
206
+ CONFLUENCE: "CONFLUENCE",
207
+ CUSTOM: "CUSTOM",
208
+ DATABASE: "DATABASE",
209
+ FSX: "FSX",
210
+ GITHUB: "GITHUB",
211
+ GOOGLEDRIVE: "GOOGLEDRIVE",
212
+ JIRA: "JIRA",
213
+ ONEDRIVE: "ONEDRIVE",
214
+ QUIP: "QUIP",
215
+ S3: "S3",
216
+ SALESFORCE: "SALESFORCE",
217
+ SERVICENOW: "SERVICENOW",
218
+ SHAREPOINT: "SHAREPOINT",
219
+ SLACK: "SLACK",
220
+ TEMPLATE: "TEMPLATE",
221
+ WEBCRAWLER: "WEBCRAWLER",
222
+ WORKDOCS: "WORKDOCS",
223
+ };
224
+ export const FaqFileFormat = {
225
+ CSV: "CSV",
226
+ CSV_WITH_HEADER: "CSV_WITH_HEADER",
227
+ JSON: "JSON",
228
+ };
229
+ export const FeaturedResultsSetStatus = {
230
+ ACTIVE: "ACTIVE",
231
+ INACTIVE: "INACTIVE",
232
+ };
233
+ export const IndexEdition = {
234
+ DEVELOPER_EDITION: "DEVELOPER_EDITION",
235
+ ENTERPRISE_EDITION: "ENTERPRISE_EDITION",
236
+ GEN_AI_ENTERPRISE_EDITION: "GEN_AI_ENTERPRISE_EDITION",
237
+ };
238
+ export const UserContextPolicy = {
239
+ ATTRIBUTE_FILTER: "ATTRIBUTE_FILTER",
240
+ USER_TOKEN: "USER_TOKEN",
241
+ };
242
+ export const UserGroupResolutionMode = {
243
+ AWS_SSO: "AWS_SSO",
244
+ NONE: "NONE",
245
+ };
246
+ export const KeyLocation = {
247
+ SECRET_MANAGER: "SECRET_MANAGER",
248
+ URL: "URL",
249
+ };
250
+ export const DataSourceStatus = {
251
+ ACTIVE: "ACTIVE",
252
+ CREATING: "CREATING",
253
+ DELETING: "DELETING",
254
+ FAILED: "FAILED",
255
+ UPDATING: "UPDATING",
256
+ };
257
+ export const EndpointType = {
258
+ HOME: "HOME",
259
+ };
260
+ export const ExperienceStatus = {
261
+ ACTIVE: "ACTIVE",
262
+ CREATING: "CREATING",
263
+ DELETING: "DELETING",
264
+ FAILED: "FAILED",
265
+ };
266
+ export const FaqStatus = {
267
+ ACTIVE: "ACTIVE",
268
+ CREATING: "CREATING",
269
+ DELETING: "DELETING",
270
+ FAILED: "FAILED",
271
+ UPDATING: "UPDATING",
272
+ };
273
+ export const Order = {
274
+ ASCENDING: "ASCENDING",
275
+ DESCENDING: "DESCENDING",
276
+ };
277
+ export const DocumentAttributeValueType = {
278
+ DATE_VALUE: "DATE_VALUE",
279
+ LONG_VALUE: "LONG_VALUE",
280
+ STRING_LIST_VALUE: "STRING_LIST_VALUE",
281
+ STRING_VALUE: "STRING_VALUE",
282
+ };
283
+ export const IndexStatus = {
284
+ ACTIVE: "ACTIVE",
285
+ CREATING: "CREATING",
286
+ DELETING: "DELETING",
287
+ FAILED: "FAILED",
288
+ SYSTEM_UPDATING: "SYSTEM_UPDATING",
289
+ UPDATING: "UPDATING",
290
+ };
291
+ export const PrincipalMappingStatus = {
292
+ DELETED: "DELETED",
293
+ DELETING: "DELETING",
294
+ FAILED: "FAILED",
295
+ PROCESSING: "PROCESSING",
296
+ SUCCEEDED: "SUCCEEDED",
297
+ };
298
+ export const QuerySuggestionsBlockListStatus = {
299
+ ACTIVE: "ACTIVE",
300
+ ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED",
301
+ CREATING: "CREATING",
302
+ DELETING: "DELETING",
303
+ FAILED: "FAILED",
304
+ UPDATING: "UPDATING",
305
+ };
306
+ export const Mode = {
307
+ ENABLED: "ENABLED",
308
+ LEARN_ONLY: "LEARN_ONLY",
309
+ };
310
+ export const QuerySuggestionsStatus = {
311
+ ACTIVE: "ACTIVE",
312
+ UPDATING: "UPDATING",
313
+ };
314
+ export const ThesaurusStatus = {
315
+ ACTIVE: "ACTIVE",
316
+ ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED",
317
+ CREATING: "CREATING",
318
+ DELETING: "DELETING",
319
+ FAILED: "FAILED",
320
+ UPDATING: "UPDATING",
321
+ };
322
+ export const SuggestionType = {
323
+ DOCUMENT_ATTRIBUTES: "DOCUMENT_ATTRIBUTES",
324
+ QUERY: "QUERY",
325
+ };
326
+ export const Interval = {
327
+ ONE_MONTH_AGO: "ONE_MONTH_AGO",
328
+ ONE_WEEK_AGO: "ONE_WEEK_AGO",
329
+ THIS_MONTH: "THIS_MONTH",
330
+ THIS_WEEK: "THIS_WEEK",
331
+ TWO_MONTHS_AGO: "TWO_MONTHS_AGO",
332
+ TWO_WEEKS_AGO: "TWO_WEEKS_AGO",
333
+ };
334
+ export const MetricType = {
335
+ AGG_QUERY_DOC_METRICS: "AGG_QUERY_DOC_METRICS",
336
+ DOCS_BY_CLICK_COUNT: "DOCS_BY_CLICK_COUNT",
337
+ QUERIES_BY_COUNT: "QUERIES_BY_COUNT",
338
+ QUERIES_BY_ZERO_CLICK_RATE: "QUERIES_BY_ZERO_CLICK_RATE",
339
+ QUERIES_BY_ZERO_RESULT_RATE: "QUERIES_BY_ZERO_RESULT_RATE",
340
+ TREND_QUERY_DOC_METRICS: "TREND_QUERY_DOC_METRICS",
341
+ };
342
+ export const DataSourceSyncJobStatus = {
343
+ ABORTED: "ABORTED",
344
+ FAILED: "FAILED",
345
+ INCOMPLETE: "INCOMPLETE",
346
+ STOPPING: "STOPPING",
347
+ SUCCEEDED: "SUCCEEDED",
348
+ SYNCING: "SYNCING",
349
+ SYNCING_INDEXING: "SYNCING_INDEXING",
350
+ };
351
+ export const MissingAttributeKeyStrategy = {
352
+ COLLAPSE: "COLLAPSE",
353
+ EXPAND: "EXPAND",
354
+ IGNORE: "IGNORE",
355
+ };
356
+ export const SortOrder = {
357
+ ASC: "ASC",
358
+ DESC: "DESC",
359
+ };
360
+ export const QueryResultType = {
361
+ ANSWER: "ANSWER",
362
+ DOCUMENT: "DOCUMENT",
363
+ QUESTION_ANSWER: "QUESTION_ANSWER",
364
+ };
365
+ export const QueryResultFormat = {
366
+ TABLE: "TABLE",
367
+ TEXT: "TEXT",
368
+ };
369
+ export const ScoreConfidence = {
370
+ HIGH: "HIGH",
371
+ LOW: "LOW",
372
+ MEDIUM: "MEDIUM",
373
+ NOT_AVAILABLE: "NOT_AVAILABLE",
374
+ VERY_HIGH: "VERY_HIGH",
375
+ };
376
+ export const WarningCode = {
377
+ QUERY_LANGUAGE_INVALID_SYNTAX: "QUERY_LANGUAGE_INVALID_SYNTAX",
378
+ };
379
+ export const RelevanceType = {
380
+ NOT_RELEVANT: "NOT_RELEVANT",
381
+ RELEVANT: "RELEVANT",
382
+ };
@@ -0,0 +1,171 @@
1
+ import { KendraServiceException as __BaseException } from "./KendraServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class InternalServerException extends __BaseException {
17
+ name = "InternalServerException";
18
+ $fault = "server";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "InternalServerException",
23
+ $fault: "server",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, InternalServerException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class ResourceAlreadyExistException extends __BaseException {
31
+ name = "ResourceAlreadyExistException";
32
+ $fault = "client";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "ResourceAlreadyExistException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, ResourceAlreadyExistException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class ResourceNotFoundException extends __BaseException {
45
+ name = "ResourceNotFoundException";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "ResourceNotFoundException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class ThrottlingException extends __BaseException {
59
+ name = "ThrottlingException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ThrottlingException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ export class ValidationException extends __BaseException {
73
+ name = "ValidationException";
74
+ $fault = "client";
75
+ Message;
76
+ constructor(opts) {
77
+ super({
78
+ name: "ValidationException",
79
+ $fault: "client",
80
+ ...opts,
81
+ });
82
+ Object.setPrototypeOf(this, ValidationException.prototype);
83
+ this.Message = opts.Message;
84
+ }
85
+ }
86
+ export class ConflictException extends __BaseException {
87
+ name = "ConflictException";
88
+ $fault = "client";
89
+ Message;
90
+ constructor(opts) {
91
+ super({
92
+ name: "ConflictException",
93
+ $fault: "client",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, ConflictException.prototype);
97
+ this.Message = opts.Message;
98
+ }
99
+ }
100
+ export class ServiceQuotaExceededException extends __BaseException {
101
+ name = "ServiceQuotaExceededException";
102
+ $fault = "client";
103
+ Message;
104
+ constructor(opts) {
105
+ super({
106
+ name: "ServiceQuotaExceededException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
111
+ this.Message = opts.Message;
112
+ }
113
+ }
114
+ export class FeaturedResultsConflictException extends __BaseException {
115
+ name = "FeaturedResultsConflictException";
116
+ $fault = "client";
117
+ Message;
118
+ ConflictingItems;
119
+ constructor(opts) {
120
+ super({
121
+ name: "FeaturedResultsConflictException",
122
+ $fault: "client",
123
+ ...opts,
124
+ });
125
+ Object.setPrototypeOf(this, FeaturedResultsConflictException.prototype);
126
+ this.Message = opts.Message;
127
+ this.ConflictingItems = opts.ConflictingItems;
128
+ }
129
+ }
130
+ export class InvalidRequestException extends __BaseException {
131
+ name = "InvalidRequestException";
132
+ $fault = "client";
133
+ Message;
134
+ constructor(opts) {
135
+ super({
136
+ name: "InvalidRequestException",
137
+ $fault: "client",
138
+ ...opts,
139
+ });
140
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
141
+ this.Message = opts.Message;
142
+ }
143
+ }
144
+ export class ResourceUnavailableException extends __BaseException {
145
+ name = "ResourceUnavailableException";
146
+ $fault = "client";
147
+ Message;
148
+ constructor(opts) {
149
+ super({
150
+ name: "ResourceUnavailableException",
151
+ $fault: "client",
152
+ ...opts,
153
+ });
154
+ Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
155
+ this.Message = opts.Message;
156
+ }
157
+ }
158
+ export class ResourceInUseException extends __BaseException {
159
+ name = "ResourceInUseException";
160
+ $fault = "client";
161
+ Message;
162
+ constructor(opts) {
163
+ super({
164
+ name: "ResourceInUseException",
165
+ $fault: "client",
166
+ ...opts,
167
+ });
168
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
169
+ this.Message = opts.Message;
170
+ }
171
+ }