@aws-sdk/client-kendra 3.933.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
@@ -0,0 +1,878 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const HighlightType: {
6
+ readonly STANDARD: "STANDARD";
7
+ readonly THESAURUS_SYNONYM: "THESAURUS_SYNONYM";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type HighlightType = (typeof HighlightType)[keyof typeof HighlightType];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const AdditionalResultAttributeValueType: {
18
+ readonly TEXT_WITH_HIGHLIGHTS_VALUE: "TEXT_WITH_HIGHLIGHTS_VALUE";
19
+ };
20
+ /**
21
+ * @public
22
+ */
23
+ export type AdditionalResultAttributeValueType = (typeof AdditionalResultAttributeValueType)[keyof typeof AdditionalResultAttributeValueType];
24
+ /**
25
+ * @public
26
+ * @enum
27
+ */
28
+ export declare const AlfrescoEntity: {
29
+ readonly blog: "blog";
30
+ readonly documentLibrary: "documentLibrary";
31
+ readonly wiki: "wiki";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type AlfrescoEntity = (typeof AlfrescoEntity)[keyof typeof AlfrescoEntity];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const EntityType: {
42
+ readonly GROUP: "GROUP";
43
+ readonly USER: "USER";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const Persona: {
54
+ readonly OWNER: "OWNER";
55
+ readonly VIEWER: "VIEWER";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type Persona = (typeof Persona)[keyof typeof Persona];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const AttributeSuggestionsMode: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly INACTIVE: "INACTIVE";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type AttributeSuggestionsMode = (typeof AttributeSuggestionsMode)[keyof typeof AttributeSuggestionsMode];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const ErrorCode: {
78
+ readonly INTERNAL_ERROR: "InternalError";
79
+ readonly INVALID_REQUEST: "InvalidRequest";
80
+ };
81
+ /**
82
+ * @public
83
+ */
84
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
85
+ /**
86
+ * @public
87
+ * @enum
88
+ */
89
+ export declare const DocumentStatus: {
90
+ readonly FAILED: "FAILED";
91
+ readonly INDEXED: "INDEXED";
92
+ readonly NOT_FOUND: "NOT_FOUND";
93
+ readonly PROCESSING: "PROCESSING";
94
+ readonly UPDATED: "UPDATED";
95
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type DocumentStatus = (typeof DocumentStatus)[keyof typeof DocumentStatus];
101
+ /**
102
+ * @public
103
+ * @enum
104
+ */
105
+ export declare const ConditionOperator: {
106
+ readonly BeginsWith: "BeginsWith";
107
+ readonly Contains: "Contains";
108
+ readonly Equals: "Equals";
109
+ readonly Exists: "Exists";
110
+ readonly GreaterThan: "GreaterThan";
111
+ readonly GreaterThanOrEquals: "GreaterThanOrEquals";
112
+ readonly LessThan: "LessThan";
113
+ readonly LessThanOrEquals: "LessThanOrEquals";
114
+ readonly NotContains: "NotContains";
115
+ readonly NotEquals: "NotEquals";
116
+ readonly NotExists: "NotExists";
117
+ };
118
+ /**
119
+ * @public
120
+ */
121
+ export type ConditionOperator = (typeof ConditionOperator)[keyof typeof ConditionOperator];
122
+ /**
123
+ * @public
124
+ * @enum
125
+ */
126
+ export declare const ReadAccessType: {
127
+ readonly ALLOW: "ALLOW";
128
+ readonly DENY: "DENY";
129
+ };
130
+ /**
131
+ * @public
132
+ */
133
+ export type ReadAccessType = (typeof ReadAccessType)[keyof typeof ReadAccessType];
134
+ /**
135
+ * @public
136
+ * @enum
137
+ */
138
+ export declare const PrincipalType: {
139
+ readonly GROUP: "GROUP";
140
+ readonly USER: "USER";
141
+ };
142
+ /**
143
+ * @public
144
+ */
145
+ export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
146
+ /**
147
+ * @public
148
+ * @enum
149
+ */
150
+ export declare const ContentType: {
151
+ readonly CSV: "CSV";
152
+ readonly HTML: "HTML";
153
+ readonly JSON: "JSON";
154
+ readonly MD: "MD";
155
+ readonly MS_EXCEL: "MS_EXCEL";
156
+ readonly MS_WORD: "MS_WORD";
157
+ readonly PDF: "PDF";
158
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
159
+ readonly PPT: "PPT";
160
+ readonly RTF: "RTF";
161
+ readonly XML: "XML";
162
+ readonly XSLT: "XSLT";
163
+ };
164
+ /**
165
+ * @public
166
+ */
167
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
168
+ /**
169
+ * @public
170
+ * @enum
171
+ */
172
+ export declare const ConfluenceAttachmentFieldName: {
173
+ readonly AUTHOR: "AUTHOR";
174
+ readonly CONTENT_TYPE: "CONTENT_TYPE";
175
+ readonly CREATED_DATE: "CREATED_DATE";
176
+ readonly DISPLAY_URL: "DISPLAY_URL";
177
+ readonly FILE_SIZE: "FILE_SIZE";
178
+ readonly ITEM_TYPE: "ITEM_TYPE";
179
+ readonly PARENT_ID: "PARENT_ID";
180
+ readonly SPACE_KEY: "SPACE_KEY";
181
+ readonly SPACE_NAME: "SPACE_NAME";
182
+ readonly URL: "URL";
183
+ readonly VERSION: "VERSION";
184
+ };
185
+ /**
186
+ * @public
187
+ */
188
+ export type ConfluenceAttachmentFieldName = (typeof ConfluenceAttachmentFieldName)[keyof typeof ConfluenceAttachmentFieldName];
189
+ /**
190
+ * @public
191
+ * @enum
192
+ */
193
+ export declare const ConfluenceAuthenticationType: {
194
+ readonly HTTP_BASIC: "HTTP_BASIC";
195
+ readonly PAT: "PAT";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type ConfluenceAuthenticationType = (typeof ConfluenceAuthenticationType)[keyof typeof ConfluenceAuthenticationType];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const ConfluenceBlogFieldName: {
206
+ readonly AUTHOR: "AUTHOR";
207
+ readonly DISPLAY_URL: "DISPLAY_URL";
208
+ readonly ITEM_TYPE: "ITEM_TYPE";
209
+ readonly LABELS: "LABELS";
210
+ readonly PUBLISH_DATE: "PUBLISH_DATE";
211
+ readonly SPACE_KEY: "SPACE_KEY";
212
+ readonly SPACE_NAME: "SPACE_NAME";
213
+ readonly URL: "URL";
214
+ readonly VERSION: "VERSION";
215
+ };
216
+ /**
217
+ * @public
218
+ */
219
+ export type ConfluenceBlogFieldName = (typeof ConfluenceBlogFieldName)[keyof typeof ConfluenceBlogFieldName];
220
+ /**
221
+ * @public
222
+ * @enum
223
+ */
224
+ export declare const ConfluencePageFieldName: {
225
+ readonly AUTHOR: "AUTHOR";
226
+ readonly CONTENT_STATUS: "CONTENT_STATUS";
227
+ readonly CREATED_DATE: "CREATED_DATE";
228
+ readonly DISPLAY_URL: "DISPLAY_URL";
229
+ readonly ITEM_TYPE: "ITEM_TYPE";
230
+ readonly LABELS: "LABELS";
231
+ readonly MODIFIED_DATE: "MODIFIED_DATE";
232
+ readonly PARENT_ID: "PARENT_ID";
233
+ readonly SPACE_KEY: "SPACE_KEY";
234
+ readonly SPACE_NAME: "SPACE_NAME";
235
+ readonly URL: "URL";
236
+ readonly VERSION: "VERSION";
237
+ };
238
+ /**
239
+ * @public
240
+ */
241
+ export type ConfluencePageFieldName = (typeof ConfluencePageFieldName)[keyof typeof ConfluencePageFieldName];
242
+ /**
243
+ * @public
244
+ * @enum
245
+ */
246
+ export declare const ConfluenceSpaceFieldName: {
247
+ readonly DISPLAY_URL: "DISPLAY_URL";
248
+ readonly ITEM_TYPE: "ITEM_TYPE";
249
+ readonly SPACE_KEY: "SPACE_KEY";
250
+ readonly URL: "URL";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type ConfluenceSpaceFieldName = (typeof ConfluenceSpaceFieldName)[keyof typeof ConfluenceSpaceFieldName];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const ConfluenceVersion: {
261
+ readonly CLOUD: "CLOUD";
262
+ readonly SERVER: "SERVER";
263
+ };
264
+ /**
265
+ * @public
266
+ */
267
+ export type ConfluenceVersion = (typeof ConfluenceVersion)[keyof typeof ConfluenceVersion];
268
+ /**
269
+ * @public
270
+ * @enum
271
+ */
272
+ export declare const DatabaseEngineType: {
273
+ readonly RDS_AURORA_MYSQL: "RDS_AURORA_MYSQL";
274
+ readonly RDS_AURORA_POSTGRESQL: "RDS_AURORA_POSTGRESQL";
275
+ readonly RDS_MYSQL: "RDS_MYSQL";
276
+ readonly RDS_POSTGRESQL: "RDS_POSTGRESQL";
277
+ };
278
+ /**
279
+ * @public
280
+ */
281
+ export type DatabaseEngineType = (typeof DatabaseEngineType)[keyof typeof DatabaseEngineType];
282
+ /**
283
+ * @public
284
+ * @enum
285
+ */
286
+ export declare const QueryIdentifiersEnclosingOption: {
287
+ readonly DOUBLE_QUOTES: "DOUBLE_QUOTES";
288
+ readonly NONE: "NONE";
289
+ };
290
+ /**
291
+ * @public
292
+ */
293
+ export type QueryIdentifiersEnclosingOption = (typeof QueryIdentifiersEnclosingOption)[keyof typeof QueryIdentifiersEnclosingOption];
294
+ /**
295
+ * @public
296
+ * @enum
297
+ */
298
+ export declare const FsxFileSystemType: {
299
+ readonly WINDOWS: "WINDOWS";
300
+ };
301
+ /**
302
+ * @public
303
+ */
304
+ export type FsxFileSystemType = (typeof FsxFileSystemType)[keyof typeof FsxFileSystemType];
305
+ /**
306
+ * @public
307
+ * @enum
308
+ */
309
+ export declare const Type: {
310
+ readonly ON_PREMISE: "ON_PREMISE";
311
+ readonly SAAS: "SAAS";
312
+ };
313
+ /**
314
+ * @public
315
+ */
316
+ export type Type = (typeof Type)[keyof typeof Type];
317
+ /**
318
+ * @public
319
+ * @enum
320
+ */
321
+ export declare const IssueSubEntity: {
322
+ readonly ATTACHMENTS: "ATTACHMENTS";
323
+ readonly COMMENTS: "COMMENTS";
324
+ readonly WORKLOGS: "WORKLOGS";
325
+ };
326
+ /**
327
+ * @public
328
+ */
329
+ export type IssueSubEntity = (typeof IssueSubEntity)[keyof typeof IssueSubEntity];
330
+ /**
331
+ * @public
332
+ * @enum
333
+ */
334
+ export declare const SalesforceChatterFeedIncludeFilterType: {
335
+ readonly ACTIVE_USER: "ACTIVE_USER";
336
+ readonly STANDARD_USER: "STANDARD_USER";
337
+ };
338
+ /**
339
+ * @public
340
+ */
341
+ export type SalesforceChatterFeedIncludeFilterType = (typeof SalesforceChatterFeedIncludeFilterType)[keyof typeof SalesforceChatterFeedIncludeFilterType];
342
+ /**
343
+ * @public
344
+ * @enum
345
+ */
346
+ export declare const SalesforceKnowledgeArticleState: {
347
+ readonly ARCHIVED: "ARCHIVED";
348
+ readonly DRAFT: "DRAFT";
349
+ readonly PUBLISHED: "PUBLISHED";
350
+ };
351
+ /**
352
+ * @public
353
+ */
354
+ export type SalesforceKnowledgeArticleState = (typeof SalesforceKnowledgeArticleState)[keyof typeof SalesforceKnowledgeArticleState];
355
+ /**
356
+ * @public
357
+ * @enum
358
+ */
359
+ export declare const SalesforceStandardObjectName: {
360
+ readonly ACCOUNT: "ACCOUNT";
361
+ readonly CAMPAIGN: "CAMPAIGN";
362
+ readonly CASE: "CASE";
363
+ readonly CONTACT: "CONTACT";
364
+ readonly CONTRACT: "CONTRACT";
365
+ readonly DOCUMENT: "DOCUMENT";
366
+ readonly GROUP: "GROUP";
367
+ readonly IDEA: "IDEA";
368
+ readonly LEAD: "LEAD";
369
+ readonly OPPORTUNITY: "OPPORTUNITY";
370
+ readonly PARTNER: "PARTNER";
371
+ readonly PRICEBOOK: "PRICEBOOK";
372
+ readonly PRODUCT: "PRODUCT";
373
+ readonly PROFILE: "PROFILE";
374
+ readonly SOLUTION: "SOLUTION";
375
+ readonly TASK: "TASK";
376
+ readonly USER: "USER";
377
+ };
378
+ /**
379
+ * @public
380
+ */
381
+ export type SalesforceStandardObjectName = (typeof SalesforceStandardObjectName)[keyof typeof SalesforceStandardObjectName];
382
+ /**
383
+ * @public
384
+ * @enum
385
+ */
386
+ export declare const ServiceNowAuthenticationType: {
387
+ readonly HTTP_BASIC: "HTTP_BASIC";
388
+ readonly OAUTH2: "OAUTH2";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type ServiceNowAuthenticationType = (typeof ServiceNowAuthenticationType)[keyof typeof ServiceNowAuthenticationType];
394
+ /**
395
+ * @public
396
+ * @enum
397
+ */
398
+ export declare const ServiceNowBuildVersionType: {
399
+ readonly LONDON: "LONDON";
400
+ readonly OTHERS: "OTHERS";
401
+ };
402
+ /**
403
+ * @public
404
+ */
405
+ export type ServiceNowBuildVersionType = (typeof ServiceNowBuildVersionType)[keyof typeof ServiceNowBuildVersionType];
406
+ /**
407
+ * @public
408
+ * @enum
409
+ */
410
+ export declare const SharePointOnlineAuthenticationType: {
411
+ readonly HTTP_BASIC: "HTTP_BASIC";
412
+ readonly OAUTH2: "OAUTH2";
413
+ };
414
+ /**
415
+ * @public
416
+ */
417
+ export type SharePointOnlineAuthenticationType = (typeof SharePointOnlineAuthenticationType)[keyof typeof SharePointOnlineAuthenticationType];
418
+ /**
419
+ * @public
420
+ * @enum
421
+ */
422
+ export declare const SharePointVersion: {
423
+ readonly SHAREPOINT_2013: "SHAREPOINT_2013";
424
+ readonly SHAREPOINT_2016: "SHAREPOINT_2016";
425
+ readonly SHAREPOINT_2019: "SHAREPOINT_2019";
426
+ readonly SHAREPOINT_ONLINE: "SHAREPOINT_ONLINE";
427
+ };
428
+ /**
429
+ * @public
430
+ */
431
+ export type SharePointVersion = (typeof SharePointVersion)[keyof typeof SharePointVersion];
432
+ /**
433
+ * @public
434
+ * @enum
435
+ */
436
+ export declare const SlackEntity: {
437
+ readonly DIRECT_MESSAGE: "DIRECT_MESSAGE";
438
+ readonly GROUP_MESSAGE: "GROUP_MESSAGE";
439
+ readonly PRIVATE_CHANNEL: "PRIVATE_CHANNEL";
440
+ readonly PUBLIC_CHANNEL: "PUBLIC_CHANNEL";
441
+ };
442
+ /**
443
+ * @public
444
+ */
445
+ export type SlackEntity = (typeof SlackEntity)[keyof typeof SlackEntity];
446
+ /**
447
+ * @public
448
+ * @enum
449
+ */
450
+ export declare const WebCrawlerMode: {
451
+ readonly EVERYTHING: "EVERYTHING";
452
+ readonly HOST_ONLY: "HOST_ONLY";
453
+ readonly SUBDOMAINS: "SUBDOMAINS";
454
+ };
455
+ /**
456
+ * @public
457
+ */
458
+ export type WebCrawlerMode = (typeof WebCrawlerMode)[keyof typeof WebCrawlerMode];
459
+ /**
460
+ * @public
461
+ * @enum
462
+ */
463
+ export declare const DataSourceType: {
464
+ readonly ALFRESCO: "ALFRESCO";
465
+ readonly BOX: "BOX";
466
+ readonly CONFLUENCE: "CONFLUENCE";
467
+ readonly CUSTOM: "CUSTOM";
468
+ readonly DATABASE: "DATABASE";
469
+ readonly FSX: "FSX";
470
+ readonly GITHUB: "GITHUB";
471
+ readonly GOOGLEDRIVE: "GOOGLEDRIVE";
472
+ readonly JIRA: "JIRA";
473
+ readonly ONEDRIVE: "ONEDRIVE";
474
+ readonly QUIP: "QUIP";
475
+ readonly S3: "S3";
476
+ readonly SALESFORCE: "SALESFORCE";
477
+ readonly SERVICENOW: "SERVICENOW";
478
+ readonly SHAREPOINT: "SHAREPOINT";
479
+ readonly SLACK: "SLACK";
480
+ readonly TEMPLATE: "TEMPLATE";
481
+ readonly WEBCRAWLER: "WEBCRAWLER";
482
+ readonly WORKDOCS: "WORKDOCS";
483
+ };
484
+ /**
485
+ * @public
486
+ */
487
+ export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
488
+ /**
489
+ * @public
490
+ * @enum
491
+ */
492
+ export declare const FaqFileFormat: {
493
+ readonly CSV: "CSV";
494
+ readonly CSV_WITH_HEADER: "CSV_WITH_HEADER";
495
+ readonly JSON: "JSON";
496
+ };
497
+ /**
498
+ * @public
499
+ */
500
+ export type FaqFileFormat = (typeof FaqFileFormat)[keyof typeof FaqFileFormat];
501
+ /**
502
+ * @public
503
+ * @enum
504
+ */
505
+ export declare const FeaturedResultsSetStatus: {
506
+ readonly ACTIVE: "ACTIVE";
507
+ readonly INACTIVE: "INACTIVE";
508
+ };
509
+ /**
510
+ * @public
511
+ */
512
+ export type FeaturedResultsSetStatus = (typeof FeaturedResultsSetStatus)[keyof typeof FeaturedResultsSetStatus];
513
+ /**
514
+ * @public
515
+ * @enum
516
+ */
517
+ export declare const IndexEdition: {
518
+ readonly DEVELOPER_EDITION: "DEVELOPER_EDITION";
519
+ readonly ENTERPRISE_EDITION: "ENTERPRISE_EDITION";
520
+ readonly GEN_AI_ENTERPRISE_EDITION: "GEN_AI_ENTERPRISE_EDITION";
521
+ };
522
+ /**
523
+ * @public
524
+ */
525
+ export type IndexEdition = (typeof IndexEdition)[keyof typeof IndexEdition];
526
+ /**
527
+ * @public
528
+ * @enum
529
+ */
530
+ export declare const UserContextPolicy: {
531
+ readonly ATTRIBUTE_FILTER: "ATTRIBUTE_FILTER";
532
+ readonly USER_TOKEN: "USER_TOKEN";
533
+ };
534
+ /**
535
+ * @public
536
+ */
537
+ export type UserContextPolicy = (typeof UserContextPolicy)[keyof typeof UserContextPolicy];
538
+ /**
539
+ * @public
540
+ * @enum
541
+ */
542
+ export declare const UserGroupResolutionMode: {
543
+ readonly AWS_SSO: "AWS_SSO";
544
+ readonly NONE: "NONE";
545
+ };
546
+ /**
547
+ * @public
548
+ */
549
+ export type UserGroupResolutionMode = (typeof UserGroupResolutionMode)[keyof typeof UserGroupResolutionMode];
550
+ /**
551
+ * @public
552
+ * @enum
553
+ */
554
+ export declare const KeyLocation: {
555
+ readonly SECRET_MANAGER: "SECRET_MANAGER";
556
+ readonly URL: "URL";
557
+ };
558
+ /**
559
+ * @public
560
+ */
561
+ export type KeyLocation = (typeof KeyLocation)[keyof typeof KeyLocation];
562
+ /**
563
+ * @public
564
+ * @enum
565
+ */
566
+ export declare const DataSourceStatus: {
567
+ readonly ACTIVE: "ACTIVE";
568
+ readonly CREATING: "CREATING";
569
+ readonly DELETING: "DELETING";
570
+ readonly FAILED: "FAILED";
571
+ readonly UPDATING: "UPDATING";
572
+ };
573
+ /**
574
+ * @public
575
+ */
576
+ export type DataSourceStatus = (typeof DataSourceStatus)[keyof typeof DataSourceStatus];
577
+ /**
578
+ * @public
579
+ * @enum
580
+ */
581
+ export declare const EndpointType: {
582
+ readonly HOME: "HOME";
583
+ };
584
+ /**
585
+ * @public
586
+ */
587
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
588
+ /**
589
+ * @public
590
+ * @enum
591
+ */
592
+ export declare const ExperienceStatus: {
593
+ readonly ACTIVE: "ACTIVE";
594
+ readonly CREATING: "CREATING";
595
+ readonly DELETING: "DELETING";
596
+ readonly FAILED: "FAILED";
597
+ };
598
+ /**
599
+ * @public
600
+ */
601
+ export type ExperienceStatus = (typeof ExperienceStatus)[keyof typeof ExperienceStatus];
602
+ /**
603
+ * @public
604
+ * @enum
605
+ */
606
+ export declare const FaqStatus: {
607
+ readonly ACTIVE: "ACTIVE";
608
+ readonly CREATING: "CREATING";
609
+ readonly DELETING: "DELETING";
610
+ readonly FAILED: "FAILED";
611
+ readonly UPDATING: "UPDATING";
612
+ };
613
+ /**
614
+ * @public
615
+ */
616
+ export type FaqStatus = (typeof FaqStatus)[keyof typeof FaqStatus];
617
+ /**
618
+ * @public
619
+ * @enum
620
+ */
621
+ export declare const Order: {
622
+ readonly ASCENDING: "ASCENDING";
623
+ readonly DESCENDING: "DESCENDING";
624
+ };
625
+ /**
626
+ * @public
627
+ */
628
+ export type Order = (typeof Order)[keyof typeof Order];
629
+ /**
630
+ * @public
631
+ * @enum
632
+ */
633
+ export declare const DocumentAttributeValueType: {
634
+ readonly DATE_VALUE: "DATE_VALUE";
635
+ readonly LONG_VALUE: "LONG_VALUE";
636
+ readonly STRING_LIST_VALUE: "STRING_LIST_VALUE";
637
+ readonly STRING_VALUE: "STRING_VALUE";
638
+ };
639
+ /**
640
+ * @public
641
+ */
642
+ export type DocumentAttributeValueType = (typeof DocumentAttributeValueType)[keyof typeof DocumentAttributeValueType];
643
+ /**
644
+ * @public
645
+ * @enum
646
+ */
647
+ export declare const IndexStatus: {
648
+ readonly ACTIVE: "ACTIVE";
649
+ readonly CREATING: "CREATING";
650
+ readonly DELETING: "DELETING";
651
+ readonly FAILED: "FAILED";
652
+ readonly SYSTEM_UPDATING: "SYSTEM_UPDATING";
653
+ readonly UPDATING: "UPDATING";
654
+ };
655
+ /**
656
+ * @public
657
+ */
658
+ export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
659
+ /**
660
+ * @public
661
+ * @enum
662
+ */
663
+ export declare const PrincipalMappingStatus: {
664
+ readonly DELETED: "DELETED";
665
+ readonly DELETING: "DELETING";
666
+ readonly FAILED: "FAILED";
667
+ readonly PROCESSING: "PROCESSING";
668
+ readonly SUCCEEDED: "SUCCEEDED";
669
+ };
670
+ /**
671
+ * @public
672
+ */
673
+ export type PrincipalMappingStatus = (typeof PrincipalMappingStatus)[keyof typeof PrincipalMappingStatus];
674
+ /**
675
+ * @public
676
+ * @enum
677
+ */
678
+ export declare const QuerySuggestionsBlockListStatus: {
679
+ readonly ACTIVE: "ACTIVE";
680
+ readonly ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED";
681
+ readonly CREATING: "CREATING";
682
+ readonly DELETING: "DELETING";
683
+ readonly FAILED: "FAILED";
684
+ readonly UPDATING: "UPDATING";
685
+ };
686
+ /**
687
+ * @public
688
+ */
689
+ export type QuerySuggestionsBlockListStatus = (typeof QuerySuggestionsBlockListStatus)[keyof typeof QuerySuggestionsBlockListStatus];
690
+ /**
691
+ * @public
692
+ * @enum
693
+ */
694
+ export declare const Mode: {
695
+ readonly ENABLED: "ENABLED";
696
+ readonly LEARN_ONLY: "LEARN_ONLY";
697
+ };
698
+ /**
699
+ * @public
700
+ */
701
+ export type Mode = (typeof Mode)[keyof typeof Mode];
702
+ /**
703
+ * @public
704
+ * @enum
705
+ */
706
+ export declare const QuerySuggestionsStatus: {
707
+ readonly ACTIVE: "ACTIVE";
708
+ readonly UPDATING: "UPDATING";
709
+ };
710
+ /**
711
+ * @public
712
+ */
713
+ export type QuerySuggestionsStatus = (typeof QuerySuggestionsStatus)[keyof typeof QuerySuggestionsStatus];
714
+ /**
715
+ * @public
716
+ * @enum
717
+ */
718
+ export declare const ThesaurusStatus: {
719
+ readonly ACTIVE: "ACTIVE";
720
+ readonly ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED";
721
+ readonly CREATING: "CREATING";
722
+ readonly DELETING: "DELETING";
723
+ readonly FAILED: "FAILED";
724
+ readonly UPDATING: "UPDATING";
725
+ };
726
+ /**
727
+ * @public
728
+ */
729
+ export type ThesaurusStatus = (typeof ThesaurusStatus)[keyof typeof ThesaurusStatus];
730
+ /**
731
+ * @public
732
+ * @enum
733
+ */
734
+ export declare const SuggestionType: {
735
+ readonly DOCUMENT_ATTRIBUTES: "DOCUMENT_ATTRIBUTES";
736
+ readonly QUERY: "QUERY";
737
+ };
738
+ /**
739
+ * @public
740
+ */
741
+ export type SuggestionType = (typeof SuggestionType)[keyof typeof SuggestionType];
742
+ /**
743
+ * @public
744
+ * @enum
745
+ */
746
+ export declare const Interval: {
747
+ readonly ONE_MONTH_AGO: "ONE_MONTH_AGO";
748
+ readonly ONE_WEEK_AGO: "ONE_WEEK_AGO";
749
+ readonly THIS_MONTH: "THIS_MONTH";
750
+ readonly THIS_WEEK: "THIS_WEEK";
751
+ readonly TWO_MONTHS_AGO: "TWO_MONTHS_AGO";
752
+ readonly TWO_WEEKS_AGO: "TWO_WEEKS_AGO";
753
+ };
754
+ /**
755
+ * @public
756
+ */
757
+ export type Interval = (typeof Interval)[keyof typeof Interval];
758
+ /**
759
+ * @public
760
+ * @enum
761
+ */
762
+ export declare const MetricType: {
763
+ readonly AGG_QUERY_DOC_METRICS: "AGG_QUERY_DOC_METRICS";
764
+ readonly DOCS_BY_CLICK_COUNT: "DOCS_BY_CLICK_COUNT";
765
+ readonly QUERIES_BY_COUNT: "QUERIES_BY_COUNT";
766
+ readonly QUERIES_BY_ZERO_CLICK_RATE: "QUERIES_BY_ZERO_CLICK_RATE";
767
+ readonly QUERIES_BY_ZERO_RESULT_RATE: "QUERIES_BY_ZERO_RESULT_RATE";
768
+ readonly TREND_QUERY_DOC_METRICS: "TREND_QUERY_DOC_METRICS";
769
+ };
770
+ /**
771
+ * @public
772
+ */
773
+ export type MetricType = (typeof MetricType)[keyof typeof MetricType];
774
+ /**
775
+ * @public
776
+ * @enum
777
+ */
778
+ export declare const DataSourceSyncJobStatus: {
779
+ readonly ABORTED: "ABORTED";
780
+ readonly FAILED: "FAILED";
781
+ readonly INCOMPLETE: "INCOMPLETE";
782
+ readonly STOPPING: "STOPPING";
783
+ readonly SUCCEEDED: "SUCCEEDED";
784
+ readonly SYNCING: "SYNCING";
785
+ readonly SYNCING_INDEXING: "SYNCING_INDEXING";
786
+ };
787
+ /**
788
+ * @public
789
+ */
790
+ export type DataSourceSyncJobStatus = (typeof DataSourceSyncJobStatus)[keyof typeof DataSourceSyncJobStatus];
791
+ /**
792
+ * @public
793
+ * @enum
794
+ */
795
+ export declare const MissingAttributeKeyStrategy: {
796
+ readonly COLLAPSE: "COLLAPSE";
797
+ readonly EXPAND: "EXPAND";
798
+ readonly IGNORE: "IGNORE";
799
+ };
800
+ /**
801
+ * @public
802
+ */
803
+ export type MissingAttributeKeyStrategy = (typeof MissingAttributeKeyStrategy)[keyof typeof MissingAttributeKeyStrategy];
804
+ /**
805
+ * @public
806
+ * @enum
807
+ */
808
+ export declare const SortOrder: {
809
+ readonly ASC: "ASC";
810
+ readonly DESC: "DESC";
811
+ };
812
+ /**
813
+ * @public
814
+ */
815
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
816
+ /**
817
+ * @public
818
+ * @enum
819
+ */
820
+ export declare const QueryResultType: {
821
+ readonly ANSWER: "ANSWER";
822
+ readonly DOCUMENT: "DOCUMENT";
823
+ readonly QUESTION_ANSWER: "QUESTION_ANSWER";
824
+ };
825
+ /**
826
+ * @public
827
+ */
828
+ export type QueryResultType = (typeof QueryResultType)[keyof typeof QueryResultType];
829
+ /**
830
+ * @public
831
+ * @enum
832
+ */
833
+ export declare const QueryResultFormat: {
834
+ readonly TABLE: "TABLE";
835
+ readonly TEXT: "TEXT";
836
+ };
837
+ /**
838
+ * @public
839
+ */
840
+ export type QueryResultFormat = (typeof QueryResultFormat)[keyof typeof QueryResultFormat];
841
+ /**
842
+ * @public
843
+ * @enum
844
+ */
845
+ export declare const ScoreConfidence: {
846
+ readonly HIGH: "HIGH";
847
+ readonly LOW: "LOW";
848
+ readonly MEDIUM: "MEDIUM";
849
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
850
+ readonly VERY_HIGH: "VERY_HIGH";
851
+ };
852
+ /**
853
+ * @public
854
+ */
855
+ export type ScoreConfidence = (typeof ScoreConfidence)[keyof typeof ScoreConfidence];
856
+ /**
857
+ * @public
858
+ * @enum
859
+ */
860
+ export declare const WarningCode: {
861
+ readonly QUERY_LANGUAGE_INVALID_SYNTAX: "QUERY_LANGUAGE_INVALID_SYNTAX";
862
+ };
863
+ /**
864
+ * @public
865
+ */
866
+ export type WarningCode = (typeof WarningCode)[keyof typeof WarningCode];
867
+ /**
868
+ * @public
869
+ * @enum
870
+ */
871
+ export declare const RelevanceType: {
872
+ readonly NOT_RELEVANT: "NOT_RELEVANT";
873
+ readonly RELEVANT: "RELEVANT";
874
+ };
875
+ /**
876
+ * @public
877
+ */
878
+ export type RelevanceType = (typeof RelevanceType)[keyof typeof RelevanceType];