aws-sdk-kendra 1.75.0 → 1.77.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kendra/client.rb +1 -1
- data/lib/aws-sdk-kendra/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-kendra.rb +1 -1
- data/sig/client.rbs +3012 -0
- data/sig/errors.rbs +53 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +2210 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2210 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Kendra
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessControlConfigurationSummary
|
12
|
+
attr_accessor id: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccessControlListConfiguration
|
17
|
+
attr_accessor key_path: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AccessDeniedException
|
22
|
+
attr_accessor message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class AclConfiguration
|
27
|
+
attr_accessor allowed_groups_column_name: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AdditionalResultAttribute
|
32
|
+
attr_accessor key: ::String
|
33
|
+
attr_accessor value_type: ("TEXT_WITH_HIGHLIGHTS_VALUE")
|
34
|
+
attr_accessor value: Types::AdditionalResultAttributeValue
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class AdditionalResultAttributeValue
|
39
|
+
attr_accessor text_with_highlights_value: Types::TextWithHighlights
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class AlfrescoConfiguration
|
44
|
+
attr_accessor site_url: ::String
|
45
|
+
attr_accessor site_id: ::String
|
46
|
+
attr_accessor secret_arn: ::String
|
47
|
+
attr_accessor ssl_certificate_s3_path: Types::S3Path
|
48
|
+
attr_accessor crawl_system_folders: bool
|
49
|
+
attr_accessor crawl_comments: bool
|
50
|
+
attr_accessor entity_filter: ::Array[("wiki" | "blog" | "documentLibrary")]
|
51
|
+
attr_accessor document_library_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
52
|
+
attr_accessor blog_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
53
|
+
attr_accessor wiki_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
54
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
55
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
56
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class AssociateEntitiesToExperienceRequest
|
61
|
+
attr_accessor id: ::String
|
62
|
+
attr_accessor index_id: ::String
|
63
|
+
attr_accessor entity_list: ::Array[Types::EntityConfiguration]
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class AssociateEntitiesToExperienceResponse
|
68
|
+
attr_accessor failed_entity_list: ::Array[Types::FailedEntity]
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class AssociatePersonasToEntitiesRequest
|
73
|
+
attr_accessor id: ::String
|
74
|
+
attr_accessor index_id: ::String
|
75
|
+
attr_accessor personas: ::Array[Types::EntityPersonaConfiguration]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class AssociatePersonasToEntitiesResponse
|
80
|
+
attr_accessor failed_entity_list: ::Array[Types::FailedEntity]
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class AttributeFilter
|
85
|
+
attr_accessor and_all_filters: ::Array[Types::AttributeFilter]
|
86
|
+
attr_accessor or_all_filters: ::Array[Types::AttributeFilter]
|
87
|
+
attr_accessor not_filter: Types::AttributeFilter
|
88
|
+
attr_accessor equals_to: Types::DocumentAttribute
|
89
|
+
attr_accessor contains_all: Types::DocumentAttribute
|
90
|
+
attr_accessor contains_any: Types::DocumentAttribute
|
91
|
+
attr_accessor greater_than: Types::DocumentAttribute
|
92
|
+
attr_accessor greater_than_or_equals: Types::DocumentAttribute
|
93
|
+
attr_accessor less_than: Types::DocumentAttribute
|
94
|
+
attr_accessor less_than_or_equals: Types::DocumentAttribute
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class AttributeSuggestionsDescribeConfig
|
99
|
+
attr_accessor suggestable_config_list: ::Array[Types::SuggestableConfig]
|
100
|
+
attr_accessor attribute_suggestions_mode: ("ACTIVE" | "INACTIVE")
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class AttributeSuggestionsGetConfig
|
105
|
+
attr_accessor suggestion_attributes: ::Array[::String]
|
106
|
+
attr_accessor additional_response_attributes: ::Array[::String]
|
107
|
+
attr_accessor attribute_filter: Types::AttributeFilter
|
108
|
+
attr_accessor user_context: Types::UserContext
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class AttributeSuggestionsUpdateConfig
|
113
|
+
attr_accessor suggestable_config_list: ::Array[Types::SuggestableConfig]
|
114
|
+
attr_accessor attribute_suggestions_mode: ("ACTIVE" | "INACTIVE")
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class AuthenticationConfiguration
|
119
|
+
attr_accessor basic_authentication: ::Array[Types::BasicAuthenticationConfiguration]
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class BasicAuthenticationConfiguration
|
124
|
+
attr_accessor host: ::String
|
125
|
+
attr_accessor port: ::Integer
|
126
|
+
attr_accessor credentials: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class BatchDeleteDocumentRequest
|
131
|
+
attr_accessor index_id: ::String
|
132
|
+
attr_accessor document_id_list: ::Array[::String]
|
133
|
+
attr_accessor data_source_sync_job_metric_target: Types::DataSourceSyncJobMetricTarget
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class BatchDeleteDocumentResponse
|
138
|
+
attr_accessor failed_documents: ::Array[Types::BatchDeleteDocumentResponseFailedDocument]
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class BatchDeleteDocumentResponseFailedDocument
|
143
|
+
attr_accessor id: ::String
|
144
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest")
|
145
|
+
attr_accessor error_message: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class BatchDeleteFeaturedResultsSetError
|
150
|
+
attr_accessor id: ::String
|
151
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest")
|
152
|
+
attr_accessor error_message: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class BatchDeleteFeaturedResultsSetRequest
|
157
|
+
attr_accessor index_id: ::String
|
158
|
+
attr_accessor featured_results_set_ids: ::Array[::String]
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class BatchDeleteFeaturedResultsSetResponse
|
163
|
+
attr_accessor errors: ::Array[Types::BatchDeleteFeaturedResultsSetError]
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class BatchGetDocumentStatusRequest
|
168
|
+
attr_accessor index_id: ::String
|
169
|
+
attr_accessor document_info_list: ::Array[Types::DocumentInfo]
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class BatchGetDocumentStatusResponse
|
174
|
+
attr_accessor errors: ::Array[Types::BatchGetDocumentStatusResponseError]
|
175
|
+
attr_accessor document_status_list: ::Array[Types::Status]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class BatchGetDocumentStatusResponseError
|
180
|
+
attr_accessor document_id: ::String
|
181
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest")
|
182
|
+
attr_accessor error_message: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class BatchPutDocumentRequest
|
187
|
+
attr_accessor index_id: ::String
|
188
|
+
attr_accessor role_arn: ::String
|
189
|
+
attr_accessor documents: ::Array[Types::Document]
|
190
|
+
attr_accessor custom_document_enrichment_configuration: Types::CustomDocumentEnrichmentConfiguration
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class BatchPutDocumentResponse
|
195
|
+
attr_accessor failed_documents: ::Array[Types::BatchPutDocumentResponseFailedDocument]
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class BatchPutDocumentResponseFailedDocument
|
200
|
+
attr_accessor id: ::String
|
201
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest")
|
202
|
+
attr_accessor error_message: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class BoxConfiguration
|
207
|
+
attr_accessor enterprise_id: ::String
|
208
|
+
attr_accessor secret_arn: ::String
|
209
|
+
attr_accessor use_change_log: bool
|
210
|
+
attr_accessor crawl_comments: bool
|
211
|
+
attr_accessor crawl_tasks: bool
|
212
|
+
attr_accessor crawl_web_links: bool
|
213
|
+
attr_accessor file_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
214
|
+
attr_accessor task_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
215
|
+
attr_accessor comment_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
216
|
+
attr_accessor web_link_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
217
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
218
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
219
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class CapacityUnitsConfiguration
|
224
|
+
attr_accessor storage_capacity_units: ::Integer
|
225
|
+
attr_accessor query_capacity_units: ::Integer
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class ClearQuerySuggestionsRequest
|
230
|
+
attr_accessor index_id: ::String
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class ClickFeedback
|
235
|
+
attr_accessor result_id: ::String
|
236
|
+
attr_accessor click_time: ::Time
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class CollapseConfiguration
|
241
|
+
attr_accessor document_attribute_key: ::String
|
242
|
+
attr_accessor sorting_configurations: ::Array[Types::SortingConfiguration]
|
243
|
+
attr_accessor missing_attribute_key_strategy: ("IGNORE" | "COLLAPSE" | "EXPAND")
|
244
|
+
attr_accessor expand: bool
|
245
|
+
attr_accessor expand_configuration: Types::ExpandConfiguration
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class CollapsedResultDetail
|
250
|
+
attr_accessor document_attribute: Types::DocumentAttribute
|
251
|
+
attr_accessor expanded_results: ::Array[Types::ExpandedResultItem]
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class ColumnConfiguration
|
256
|
+
attr_accessor document_id_column_name: ::String
|
257
|
+
attr_accessor document_data_column_name: ::String
|
258
|
+
attr_accessor document_title_column_name: ::String
|
259
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
260
|
+
attr_accessor change_detecting_columns: ::Array[::String]
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class ConflictException
|
265
|
+
attr_accessor message: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class ConflictingItem
|
270
|
+
attr_accessor query_text: ::String
|
271
|
+
attr_accessor set_name: ::String
|
272
|
+
attr_accessor set_id: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class ConfluenceAttachmentConfiguration
|
277
|
+
attr_accessor crawl_attachments: bool
|
278
|
+
attr_accessor attachment_field_mappings: ::Array[Types::ConfluenceAttachmentToIndexFieldMapping]
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class ConfluenceAttachmentToIndexFieldMapping
|
283
|
+
attr_accessor data_source_field_name: ("AUTHOR" | "CONTENT_TYPE" | "CREATED_DATE" | "DISPLAY_URL" | "FILE_SIZE" | "ITEM_TYPE" | "PARENT_ID" | "SPACE_KEY" | "SPACE_NAME" | "URL" | "VERSION")
|
284
|
+
attr_accessor date_field_format: ::String
|
285
|
+
attr_accessor index_field_name: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class ConfluenceBlogConfiguration
|
290
|
+
attr_accessor blog_field_mappings: ::Array[Types::ConfluenceBlogToIndexFieldMapping]
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class ConfluenceBlogToIndexFieldMapping
|
295
|
+
attr_accessor data_source_field_name: ("AUTHOR" | "DISPLAY_URL" | "ITEM_TYPE" | "LABELS" | "PUBLISH_DATE" | "SPACE_KEY" | "SPACE_NAME" | "URL" | "VERSION")
|
296
|
+
attr_accessor date_field_format: ::String
|
297
|
+
attr_accessor index_field_name: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class ConfluenceConfiguration
|
302
|
+
attr_accessor server_url: ::String
|
303
|
+
attr_accessor secret_arn: ::String
|
304
|
+
attr_accessor version: ("CLOUD" | "SERVER")
|
305
|
+
attr_accessor space_configuration: Types::ConfluenceSpaceConfiguration
|
306
|
+
attr_accessor page_configuration: Types::ConfluencePageConfiguration
|
307
|
+
attr_accessor blog_configuration: Types::ConfluenceBlogConfiguration
|
308
|
+
attr_accessor attachment_configuration: Types::ConfluenceAttachmentConfiguration
|
309
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
310
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
311
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
312
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
313
|
+
attr_accessor authentication_type: ("HTTP_BASIC" | "PAT")
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class ConfluencePageConfiguration
|
318
|
+
attr_accessor page_field_mappings: ::Array[Types::ConfluencePageToIndexFieldMapping]
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class ConfluencePageToIndexFieldMapping
|
323
|
+
attr_accessor data_source_field_name: ("AUTHOR" | "CONTENT_STATUS" | "CREATED_DATE" | "DISPLAY_URL" | "ITEM_TYPE" | "LABELS" | "MODIFIED_DATE" | "PARENT_ID" | "SPACE_KEY" | "SPACE_NAME" | "URL" | "VERSION")
|
324
|
+
attr_accessor date_field_format: ::String
|
325
|
+
attr_accessor index_field_name: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class ConfluenceSpaceConfiguration
|
330
|
+
attr_accessor crawl_personal_spaces: bool
|
331
|
+
attr_accessor crawl_archived_spaces: bool
|
332
|
+
attr_accessor include_spaces: ::Array[::String]
|
333
|
+
attr_accessor exclude_spaces: ::Array[::String]
|
334
|
+
attr_accessor space_field_mappings: ::Array[Types::ConfluenceSpaceToIndexFieldMapping]
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class ConfluenceSpaceToIndexFieldMapping
|
339
|
+
attr_accessor data_source_field_name: ("DISPLAY_URL" | "ITEM_TYPE" | "SPACE_KEY" | "URL")
|
340
|
+
attr_accessor date_field_format: ::String
|
341
|
+
attr_accessor index_field_name: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class ConnectionConfiguration
|
346
|
+
attr_accessor database_host: ::String
|
347
|
+
attr_accessor database_port: ::Integer
|
348
|
+
attr_accessor database_name: ::String
|
349
|
+
attr_accessor table_name: ::String
|
350
|
+
attr_accessor secret_arn: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class ContentSourceConfiguration
|
355
|
+
attr_accessor data_source_ids: ::Array[::String]
|
356
|
+
attr_accessor faq_ids: ::Array[::String]
|
357
|
+
attr_accessor direct_put_content: bool
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class Correction
|
362
|
+
attr_accessor begin_offset: ::Integer
|
363
|
+
attr_accessor end_offset: ::Integer
|
364
|
+
attr_accessor term: ::String
|
365
|
+
attr_accessor corrected_term: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class CreateAccessControlConfigurationRequest
|
370
|
+
attr_accessor index_id: ::String
|
371
|
+
attr_accessor name: ::String
|
372
|
+
attr_accessor description: ::String
|
373
|
+
attr_accessor access_control_list: ::Array[Types::Principal]
|
374
|
+
attr_accessor hierarchical_access_control_list: ::Array[Types::HierarchicalPrincipal]
|
375
|
+
attr_accessor client_token: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class CreateAccessControlConfigurationResponse
|
380
|
+
attr_accessor id: ::String
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class CreateDataSourceRequest
|
385
|
+
attr_accessor name: ::String
|
386
|
+
attr_accessor index_id: ::String
|
387
|
+
attr_accessor type: ("S3" | "SHAREPOINT" | "DATABASE" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS" | "FSX" | "SLACK" | "BOX" | "QUIP" | "JIRA" | "GITHUB" | "ALFRESCO" | "TEMPLATE")
|
388
|
+
attr_accessor configuration: Types::DataSourceConfiguration
|
389
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
390
|
+
attr_accessor description: ::String
|
391
|
+
attr_accessor schedule: ::String
|
392
|
+
attr_accessor role_arn: ::String
|
393
|
+
attr_accessor tags: ::Array[Types::Tag]
|
394
|
+
attr_accessor client_token: ::String
|
395
|
+
attr_accessor language_code: ::String
|
396
|
+
attr_accessor custom_document_enrichment_configuration: Types::CustomDocumentEnrichmentConfiguration
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class CreateDataSourceResponse
|
401
|
+
attr_accessor id: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class CreateExperienceRequest
|
406
|
+
attr_accessor name: ::String
|
407
|
+
attr_accessor index_id: ::String
|
408
|
+
attr_accessor role_arn: ::String
|
409
|
+
attr_accessor configuration: Types::ExperienceConfiguration
|
410
|
+
attr_accessor description: ::String
|
411
|
+
attr_accessor client_token: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class CreateExperienceResponse
|
416
|
+
attr_accessor id: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class CreateFaqRequest
|
421
|
+
attr_accessor index_id: ::String
|
422
|
+
attr_accessor name: ::String
|
423
|
+
attr_accessor description: ::String
|
424
|
+
attr_accessor s3_path: Types::S3Path
|
425
|
+
attr_accessor role_arn: ::String
|
426
|
+
attr_accessor tags: ::Array[Types::Tag]
|
427
|
+
attr_accessor file_format: ("CSV" | "CSV_WITH_HEADER" | "JSON")
|
428
|
+
attr_accessor client_token: ::String
|
429
|
+
attr_accessor language_code: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class CreateFaqResponse
|
434
|
+
attr_accessor id: ::String
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class CreateFeaturedResultsSetRequest
|
439
|
+
attr_accessor index_id: ::String
|
440
|
+
attr_accessor featured_results_set_name: ::String
|
441
|
+
attr_accessor description: ::String
|
442
|
+
attr_accessor client_token: ::String
|
443
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
444
|
+
attr_accessor query_texts: ::Array[::String]
|
445
|
+
attr_accessor featured_documents: ::Array[Types::FeaturedDocument]
|
446
|
+
attr_accessor tags: ::Array[Types::Tag]
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class CreateFeaturedResultsSetResponse
|
451
|
+
attr_accessor featured_results_set: Types::FeaturedResultsSet
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class CreateIndexRequest
|
456
|
+
attr_accessor name: ::String
|
457
|
+
attr_accessor edition: ("DEVELOPER_EDITION" | "ENTERPRISE_EDITION")
|
458
|
+
attr_accessor role_arn: ::String
|
459
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
460
|
+
attr_accessor description: ::String
|
461
|
+
attr_accessor client_token: ::String
|
462
|
+
attr_accessor tags: ::Array[Types::Tag]
|
463
|
+
attr_accessor user_token_configurations: ::Array[Types::UserTokenConfiguration]
|
464
|
+
attr_accessor user_context_policy: ("ATTRIBUTE_FILTER" | "USER_TOKEN")
|
465
|
+
attr_accessor user_group_resolution_configuration: Types::UserGroupResolutionConfiguration
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class CreateIndexResponse
|
470
|
+
attr_accessor id: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class CreateQuerySuggestionsBlockListRequest
|
475
|
+
attr_accessor index_id: ::String
|
476
|
+
attr_accessor name: ::String
|
477
|
+
attr_accessor description: ::String
|
478
|
+
attr_accessor source_s3_path: Types::S3Path
|
479
|
+
attr_accessor client_token: ::String
|
480
|
+
attr_accessor role_arn: ::String
|
481
|
+
attr_accessor tags: ::Array[Types::Tag]
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class CreateQuerySuggestionsBlockListResponse
|
486
|
+
attr_accessor id: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class CreateThesaurusRequest
|
491
|
+
attr_accessor index_id: ::String
|
492
|
+
attr_accessor name: ::String
|
493
|
+
attr_accessor description: ::String
|
494
|
+
attr_accessor role_arn: ::String
|
495
|
+
attr_accessor tags: ::Array[Types::Tag]
|
496
|
+
attr_accessor source_s3_path: Types::S3Path
|
497
|
+
attr_accessor client_token: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class CreateThesaurusResponse
|
502
|
+
attr_accessor id: ::String
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class CustomDocumentEnrichmentConfiguration
|
507
|
+
attr_accessor inline_configurations: ::Array[Types::InlineCustomDocumentEnrichmentConfiguration]
|
508
|
+
attr_accessor pre_extraction_hook_configuration: Types::HookConfiguration
|
509
|
+
attr_accessor post_extraction_hook_configuration: Types::HookConfiguration
|
510
|
+
attr_accessor role_arn: ::String
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class DataSourceConfiguration
|
515
|
+
attr_accessor s3_configuration: Types::S3DataSourceConfiguration
|
516
|
+
attr_accessor share_point_configuration: Types::SharePointConfiguration
|
517
|
+
attr_accessor database_configuration: Types::DatabaseConfiguration
|
518
|
+
attr_accessor salesforce_configuration: Types::SalesforceConfiguration
|
519
|
+
attr_accessor one_drive_configuration: Types::OneDriveConfiguration
|
520
|
+
attr_accessor service_now_configuration: Types::ServiceNowConfiguration
|
521
|
+
attr_accessor confluence_configuration: Types::ConfluenceConfiguration
|
522
|
+
attr_accessor google_drive_configuration: Types::GoogleDriveConfiguration
|
523
|
+
attr_accessor web_crawler_configuration: Types::WebCrawlerConfiguration
|
524
|
+
attr_accessor work_docs_configuration: Types::WorkDocsConfiguration
|
525
|
+
attr_accessor fsx_configuration: Types::FsxConfiguration
|
526
|
+
attr_accessor slack_configuration: Types::SlackConfiguration
|
527
|
+
attr_accessor box_configuration: Types::BoxConfiguration
|
528
|
+
attr_accessor quip_configuration: Types::QuipConfiguration
|
529
|
+
attr_accessor jira_configuration: Types::JiraConfiguration
|
530
|
+
attr_accessor git_hub_configuration: Types::GitHubConfiguration
|
531
|
+
attr_accessor alfresco_configuration: Types::AlfrescoConfiguration
|
532
|
+
attr_accessor template_configuration: Types::TemplateConfiguration
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class DataSourceGroup
|
537
|
+
attr_accessor group_id: ::String
|
538
|
+
attr_accessor data_source_id: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class DataSourceSummary
|
543
|
+
attr_accessor name: ::String
|
544
|
+
attr_accessor id: ::String
|
545
|
+
attr_accessor type: ("S3" | "SHAREPOINT" | "DATABASE" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS" | "FSX" | "SLACK" | "BOX" | "QUIP" | "JIRA" | "GITHUB" | "ALFRESCO" | "TEMPLATE")
|
546
|
+
attr_accessor created_at: ::Time
|
547
|
+
attr_accessor updated_at: ::Time
|
548
|
+
attr_accessor status: ("CREATING" | "DELETING" | "FAILED" | "UPDATING" | "ACTIVE")
|
549
|
+
attr_accessor language_code: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class DataSourceSyncJob
|
554
|
+
attr_accessor execution_id: ::String
|
555
|
+
attr_accessor start_time: ::Time
|
556
|
+
attr_accessor end_time: ::Time
|
557
|
+
attr_accessor status: ("FAILED" | "SUCCEEDED" | "SYNCING" | "INCOMPLETE" | "STOPPING" | "ABORTED" | "SYNCING_INDEXING")
|
558
|
+
attr_accessor error_message: ::String
|
559
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest")
|
560
|
+
attr_accessor data_source_error_code: ::String
|
561
|
+
attr_accessor metrics: Types::DataSourceSyncJobMetrics
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class DataSourceSyncJobMetricTarget
|
566
|
+
attr_accessor data_source_id: ::String
|
567
|
+
attr_accessor data_source_sync_job_id: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class DataSourceSyncJobMetrics
|
572
|
+
attr_accessor documents_added: ::String
|
573
|
+
attr_accessor documents_modified: ::String
|
574
|
+
attr_accessor documents_deleted: ::String
|
575
|
+
attr_accessor documents_failed: ::String
|
576
|
+
attr_accessor documents_scanned: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class DataSourceToIndexFieldMapping
|
581
|
+
attr_accessor data_source_field_name: ::String
|
582
|
+
attr_accessor date_field_format: ::String
|
583
|
+
attr_accessor index_field_name: ::String
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class DataSourceVpcConfiguration
|
588
|
+
attr_accessor subnet_ids: ::Array[::String]
|
589
|
+
attr_accessor security_group_ids: ::Array[::String]
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class DatabaseConfiguration
|
594
|
+
attr_accessor database_engine_type: ("RDS_AURORA_MYSQL" | "RDS_AURORA_POSTGRESQL" | "RDS_MYSQL" | "RDS_POSTGRESQL")
|
595
|
+
attr_accessor connection_configuration: Types::ConnectionConfiguration
|
596
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
597
|
+
attr_accessor column_configuration: Types::ColumnConfiguration
|
598
|
+
attr_accessor acl_configuration: Types::AclConfiguration
|
599
|
+
attr_accessor sql_configuration: Types::SqlConfiguration
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class DeleteAccessControlConfigurationRequest
|
604
|
+
attr_accessor index_id: ::String
|
605
|
+
attr_accessor id: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class DeleteAccessControlConfigurationResponse < Aws::EmptyStructure
|
610
|
+
end
|
611
|
+
|
612
|
+
class DeleteDataSourceRequest
|
613
|
+
attr_accessor id: ::String
|
614
|
+
attr_accessor index_id: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class DeleteExperienceRequest
|
619
|
+
attr_accessor id: ::String
|
620
|
+
attr_accessor index_id: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class DeleteExperienceResponse < Aws::EmptyStructure
|
625
|
+
end
|
626
|
+
|
627
|
+
class DeleteFaqRequest
|
628
|
+
attr_accessor id: ::String
|
629
|
+
attr_accessor index_id: ::String
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class DeleteIndexRequest
|
634
|
+
attr_accessor id: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class DeletePrincipalMappingRequest
|
639
|
+
attr_accessor index_id: ::String
|
640
|
+
attr_accessor data_source_id: ::String
|
641
|
+
attr_accessor group_id: ::String
|
642
|
+
attr_accessor ordering_id: ::Integer
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class DeleteQuerySuggestionsBlockListRequest
|
647
|
+
attr_accessor index_id: ::String
|
648
|
+
attr_accessor id: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class DeleteThesaurusRequest
|
653
|
+
attr_accessor id: ::String
|
654
|
+
attr_accessor index_id: ::String
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class DescribeAccessControlConfigurationRequest
|
659
|
+
attr_accessor index_id: ::String
|
660
|
+
attr_accessor id: ::String
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class DescribeAccessControlConfigurationResponse
|
665
|
+
attr_accessor name: ::String
|
666
|
+
attr_accessor description: ::String
|
667
|
+
attr_accessor error_message: ::String
|
668
|
+
attr_accessor access_control_list: ::Array[Types::Principal]
|
669
|
+
attr_accessor hierarchical_access_control_list: ::Array[Types::HierarchicalPrincipal]
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class DescribeDataSourceRequest
|
674
|
+
attr_accessor id: ::String
|
675
|
+
attr_accessor index_id: ::String
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class DescribeDataSourceResponse
|
680
|
+
attr_accessor id: ::String
|
681
|
+
attr_accessor index_id: ::String
|
682
|
+
attr_accessor name: ::String
|
683
|
+
attr_accessor type: ("S3" | "SHAREPOINT" | "DATABASE" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS" | "FSX" | "SLACK" | "BOX" | "QUIP" | "JIRA" | "GITHUB" | "ALFRESCO" | "TEMPLATE")
|
684
|
+
attr_accessor configuration: Types::DataSourceConfiguration
|
685
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
686
|
+
attr_accessor created_at: ::Time
|
687
|
+
attr_accessor updated_at: ::Time
|
688
|
+
attr_accessor description: ::String
|
689
|
+
attr_accessor status: ("CREATING" | "DELETING" | "FAILED" | "UPDATING" | "ACTIVE")
|
690
|
+
attr_accessor schedule: ::String
|
691
|
+
attr_accessor role_arn: ::String
|
692
|
+
attr_accessor error_message: ::String
|
693
|
+
attr_accessor language_code: ::String
|
694
|
+
attr_accessor custom_document_enrichment_configuration: Types::CustomDocumentEnrichmentConfiguration
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class DescribeExperienceRequest
|
699
|
+
attr_accessor id: ::String
|
700
|
+
attr_accessor index_id: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class DescribeExperienceResponse
|
705
|
+
attr_accessor id: ::String
|
706
|
+
attr_accessor index_id: ::String
|
707
|
+
attr_accessor name: ::String
|
708
|
+
attr_accessor endpoints: ::Array[Types::ExperienceEndpoint]
|
709
|
+
attr_accessor configuration: Types::ExperienceConfiguration
|
710
|
+
attr_accessor created_at: ::Time
|
711
|
+
attr_accessor updated_at: ::Time
|
712
|
+
attr_accessor description: ::String
|
713
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
714
|
+
attr_accessor role_arn: ::String
|
715
|
+
attr_accessor error_message: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class DescribeFaqRequest
|
720
|
+
attr_accessor id: ::String
|
721
|
+
attr_accessor index_id: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class DescribeFaqResponse
|
726
|
+
attr_accessor id: ::String
|
727
|
+
attr_accessor index_id: ::String
|
728
|
+
attr_accessor name: ::String
|
729
|
+
attr_accessor description: ::String
|
730
|
+
attr_accessor created_at: ::Time
|
731
|
+
attr_accessor updated_at: ::Time
|
732
|
+
attr_accessor s3_path: Types::S3Path
|
733
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "DELETING" | "FAILED")
|
734
|
+
attr_accessor role_arn: ::String
|
735
|
+
attr_accessor error_message: ::String
|
736
|
+
attr_accessor file_format: ("CSV" | "CSV_WITH_HEADER" | "JSON")
|
737
|
+
attr_accessor language_code: ::String
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class DescribeFeaturedResultsSetRequest
|
742
|
+
attr_accessor index_id: ::String
|
743
|
+
attr_accessor featured_results_set_id: ::String
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
747
|
+
class DescribeFeaturedResultsSetResponse
|
748
|
+
attr_accessor featured_results_set_id: ::String
|
749
|
+
attr_accessor featured_results_set_name: ::String
|
750
|
+
attr_accessor description: ::String
|
751
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
752
|
+
attr_accessor query_texts: ::Array[::String]
|
753
|
+
attr_accessor featured_documents_with_metadata: ::Array[Types::FeaturedDocumentWithMetadata]
|
754
|
+
attr_accessor featured_documents_missing: ::Array[Types::FeaturedDocumentMissing]
|
755
|
+
attr_accessor last_updated_timestamp: ::Integer
|
756
|
+
attr_accessor creation_timestamp: ::Integer
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class DescribeIndexRequest
|
761
|
+
attr_accessor id: ::String
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class DescribeIndexResponse
|
766
|
+
attr_accessor name: ::String
|
767
|
+
attr_accessor id: ::String
|
768
|
+
attr_accessor edition: ("DEVELOPER_EDITION" | "ENTERPRISE_EDITION")
|
769
|
+
attr_accessor role_arn: ::String
|
770
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
771
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "SYSTEM_UPDATING")
|
772
|
+
attr_accessor description: ::String
|
773
|
+
attr_accessor created_at: ::Time
|
774
|
+
attr_accessor updated_at: ::Time
|
775
|
+
attr_accessor document_metadata_configurations: ::Array[Types::DocumentMetadataConfiguration]
|
776
|
+
attr_accessor index_statistics: Types::IndexStatistics
|
777
|
+
attr_accessor error_message: ::String
|
778
|
+
attr_accessor capacity_units: Types::CapacityUnitsConfiguration
|
779
|
+
attr_accessor user_token_configurations: ::Array[Types::UserTokenConfiguration]
|
780
|
+
attr_accessor user_context_policy: ("ATTRIBUTE_FILTER" | "USER_TOKEN")
|
781
|
+
attr_accessor user_group_resolution_configuration: Types::UserGroupResolutionConfiguration
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class DescribePrincipalMappingRequest
|
786
|
+
attr_accessor index_id: ::String
|
787
|
+
attr_accessor data_source_id: ::String
|
788
|
+
attr_accessor group_id: ::String
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class DescribePrincipalMappingResponse
|
793
|
+
attr_accessor index_id: ::String
|
794
|
+
attr_accessor data_source_id: ::String
|
795
|
+
attr_accessor group_id: ::String
|
796
|
+
attr_accessor group_ordering_id_summaries: ::Array[Types::GroupOrderingIdSummary]
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class DescribeQuerySuggestionsBlockListRequest
|
801
|
+
attr_accessor index_id: ::String
|
802
|
+
attr_accessor id: ::String
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class DescribeQuerySuggestionsBlockListResponse
|
807
|
+
attr_accessor index_id: ::String
|
808
|
+
attr_accessor id: ::String
|
809
|
+
attr_accessor name: ::String
|
810
|
+
attr_accessor description: ::String
|
811
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING" | "ACTIVE_BUT_UPDATE_FAILED" | "FAILED")
|
812
|
+
attr_accessor error_message: ::String
|
813
|
+
attr_accessor created_at: ::Time
|
814
|
+
attr_accessor updated_at: ::Time
|
815
|
+
attr_accessor source_s3_path: Types::S3Path
|
816
|
+
attr_accessor item_count: ::Integer
|
817
|
+
attr_accessor file_size_bytes: ::Integer
|
818
|
+
attr_accessor role_arn: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class DescribeQuerySuggestionsConfigRequest
|
823
|
+
attr_accessor index_id: ::String
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class DescribeQuerySuggestionsConfigResponse
|
828
|
+
attr_accessor mode: ("ENABLED" | "LEARN_ONLY")
|
829
|
+
attr_accessor status: ("ACTIVE" | "UPDATING")
|
830
|
+
attr_accessor query_log_look_back_window_in_days: ::Integer
|
831
|
+
attr_accessor include_queries_without_user_information: bool
|
832
|
+
attr_accessor minimum_number_of_querying_users: ::Integer
|
833
|
+
attr_accessor minimum_query_count: ::Integer
|
834
|
+
attr_accessor last_suggestions_build_time: ::Time
|
835
|
+
attr_accessor last_clear_time: ::Time
|
836
|
+
attr_accessor total_suggestions_count: ::Integer
|
837
|
+
attr_accessor attribute_suggestions_config: Types::AttributeSuggestionsDescribeConfig
|
838
|
+
SENSITIVE: []
|
839
|
+
end
|
840
|
+
|
841
|
+
class DescribeThesaurusRequest
|
842
|
+
attr_accessor id: ::String
|
843
|
+
attr_accessor index_id: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class DescribeThesaurusResponse
|
848
|
+
attr_accessor id: ::String
|
849
|
+
attr_accessor index_id: ::String
|
850
|
+
attr_accessor name: ::String
|
851
|
+
attr_accessor description: ::String
|
852
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "ACTIVE_BUT_UPDATE_FAILED" | "FAILED")
|
853
|
+
attr_accessor error_message: ::String
|
854
|
+
attr_accessor created_at: ::Time
|
855
|
+
attr_accessor updated_at: ::Time
|
856
|
+
attr_accessor role_arn: ::String
|
857
|
+
attr_accessor source_s3_path: Types::S3Path
|
858
|
+
attr_accessor file_size_bytes: ::Integer
|
859
|
+
attr_accessor term_count: ::Integer
|
860
|
+
attr_accessor synonym_rule_count: ::Integer
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class DisassociateEntitiesFromExperienceRequest
|
865
|
+
attr_accessor id: ::String
|
866
|
+
attr_accessor index_id: ::String
|
867
|
+
attr_accessor entity_list: ::Array[Types::EntityConfiguration]
|
868
|
+
SENSITIVE: []
|
869
|
+
end
|
870
|
+
|
871
|
+
class DisassociateEntitiesFromExperienceResponse
|
872
|
+
attr_accessor failed_entity_list: ::Array[Types::FailedEntity]
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class DisassociatePersonasFromEntitiesRequest
|
877
|
+
attr_accessor id: ::String
|
878
|
+
attr_accessor index_id: ::String
|
879
|
+
attr_accessor entity_ids: ::Array[::String]
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class DisassociatePersonasFromEntitiesResponse
|
884
|
+
attr_accessor failed_entity_list: ::Array[Types::FailedEntity]
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class Document
|
889
|
+
attr_accessor id: ::String
|
890
|
+
attr_accessor title: ::String
|
891
|
+
attr_accessor blob: ::String
|
892
|
+
attr_accessor s3_path: Types::S3Path
|
893
|
+
attr_accessor attributes: ::Array[Types::DocumentAttribute]
|
894
|
+
attr_accessor access_control_list: ::Array[Types::Principal]
|
895
|
+
attr_accessor hierarchical_access_control_list: ::Array[Types::HierarchicalPrincipal]
|
896
|
+
attr_accessor content_type: ("PDF" | "HTML" | "MS_WORD" | "PLAIN_TEXT" | "PPT" | "RTF" | "XML" | "XSLT" | "MS_EXCEL" | "CSV" | "JSON" | "MD")
|
897
|
+
attr_accessor access_control_configuration_id: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class DocumentAttribute
|
902
|
+
attr_accessor key: ::String
|
903
|
+
attr_accessor value: Types::DocumentAttributeValue
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class DocumentAttributeCondition
|
908
|
+
attr_accessor condition_document_attribute_key: ::String
|
909
|
+
attr_accessor operator: ("GreaterThan" | "GreaterThanOrEquals" | "LessThan" | "LessThanOrEquals" | "Equals" | "NotEquals" | "Contains" | "NotContains" | "Exists" | "NotExists" | "BeginsWith")
|
910
|
+
attr_accessor condition_on_value: Types::DocumentAttributeValue
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class DocumentAttributeTarget
|
915
|
+
attr_accessor target_document_attribute_key: ::String
|
916
|
+
attr_accessor target_document_attribute_value_deletion: bool
|
917
|
+
attr_accessor target_document_attribute_value: Types::DocumentAttributeValue
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
921
|
+
class DocumentAttributeValue
|
922
|
+
attr_accessor string_value: ::String
|
923
|
+
attr_accessor string_list_value: ::Array[::String]
|
924
|
+
attr_accessor long_value: ::Integer
|
925
|
+
attr_accessor date_value: ::Time
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class DocumentAttributeValueCountPair
|
930
|
+
attr_accessor document_attribute_value: Types::DocumentAttributeValue
|
931
|
+
attr_accessor count: ::Integer
|
932
|
+
attr_accessor facet_results: ::Array[Types::FacetResult]
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class DocumentInfo
|
937
|
+
attr_accessor document_id: ::String
|
938
|
+
attr_accessor attributes: ::Array[Types::DocumentAttribute]
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class DocumentMetadataConfiguration
|
943
|
+
attr_accessor name: ::String
|
944
|
+
attr_accessor type: ("STRING_VALUE" | "STRING_LIST_VALUE" | "LONG_VALUE" | "DATE_VALUE")
|
945
|
+
attr_accessor relevance: Types::Relevance
|
946
|
+
attr_accessor search: Types::Search
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class DocumentRelevanceConfiguration
|
951
|
+
attr_accessor name: ::String
|
952
|
+
attr_accessor relevance: Types::Relevance
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class DocumentsMetadataConfiguration
|
957
|
+
attr_accessor s3_prefix: ::String
|
958
|
+
SENSITIVE: []
|
959
|
+
end
|
960
|
+
|
961
|
+
class EntityConfiguration
|
962
|
+
attr_accessor entity_id: ::String
|
963
|
+
attr_accessor entity_type: ("USER" | "GROUP")
|
964
|
+
SENSITIVE: []
|
965
|
+
end
|
966
|
+
|
967
|
+
class EntityDisplayData
|
968
|
+
attr_accessor user_name: ::String
|
969
|
+
attr_accessor group_name: ::String
|
970
|
+
attr_accessor identified_user_name: ::String
|
971
|
+
attr_accessor first_name: ::String
|
972
|
+
attr_accessor last_name: ::String
|
973
|
+
SENSITIVE: [:user_name, :group_name, :identified_user_name, :first_name, :last_name]
|
974
|
+
end
|
975
|
+
|
976
|
+
class EntityPersonaConfiguration
|
977
|
+
attr_accessor entity_id: ::String
|
978
|
+
attr_accessor persona: ("OWNER" | "VIEWER")
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class ExpandConfiguration
|
983
|
+
attr_accessor max_result_items_to_expand: ::Integer
|
984
|
+
attr_accessor max_expanded_results_per_item: ::Integer
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class ExpandedResultItem
|
989
|
+
attr_accessor id: ::String
|
990
|
+
attr_accessor document_id: ::String
|
991
|
+
attr_accessor document_title: Types::TextWithHighlights
|
992
|
+
attr_accessor document_excerpt: Types::TextWithHighlights
|
993
|
+
attr_accessor document_uri: ::String
|
994
|
+
attr_accessor document_attributes: ::Array[Types::DocumentAttribute]
|
995
|
+
SENSITIVE: []
|
996
|
+
end
|
997
|
+
|
998
|
+
class ExperienceConfiguration
|
999
|
+
attr_accessor content_source_configuration: Types::ContentSourceConfiguration
|
1000
|
+
attr_accessor user_identity_configuration: Types::UserIdentityConfiguration
|
1001
|
+
SENSITIVE: []
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class ExperienceEndpoint
|
1005
|
+
attr_accessor endpoint_type: ("HOME")
|
1006
|
+
attr_accessor endpoint: ::String
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class ExperienceEntitiesSummary
|
1011
|
+
attr_accessor entity_id: ::String
|
1012
|
+
attr_accessor entity_type: ("USER" | "GROUP")
|
1013
|
+
attr_accessor display_data: Types::EntityDisplayData
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class ExperiencesSummary
|
1018
|
+
attr_accessor name: ::String
|
1019
|
+
attr_accessor id: ::String
|
1020
|
+
attr_accessor created_at: ::Time
|
1021
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
1022
|
+
attr_accessor endpoints: ::Array[Types::ExperienceEndpoint]
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class Facet
|
1027
|
+
attr_accessor document_attribute_key: ::String
|
1028
|
+
attr_accessor facets: ::Array[Types::Facet]
|
1029
|
+
attr_accessor max_results: ::Integer
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class FacetResult
|
1034
|
+
attr_accessor document_attribute_key: ::String
|
1035
|
+
attr_accessor document_attribute_value_type: ("STRING_VALUE" | "STRING_LIST_VALUE" | "LONG_VALUE" | "DATE_VALUE")
|
1036
|
+
attr_accessor document_attribute_value_count_pairs: ::Array[Types::DocumentAttributeValueCountPair]
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class FailedEntity
|
1041
|
+
attr_accessor entity_id: ::String
|
1042
|
+
attr_accessor error_message: ::String
|
1043
|
+
SENSITIVE: []
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class FaqStatistics
|
1047
|
+
attr_accessor indexed_question_answers_count: ::Integer
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class FaqSummary
|
1052
|
+
attr_accessor id: ::String
|
1053
|
+
attr_accessor name: ::String
|
1054
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "DELETING" | "FAILED")
|
1055
|
+
attr_accessor created_at: ::Time
|
1056
|
+
attr_accessor updated_at: ::Time
|
1057
|
+
attr_accessor file_format: ("CSV" | "CSV_WITH_HEADER" | "JSON")
|
1058
|
+
attr_accessor language_code: ::String
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class FeaturedDocument
|
1063
|
+
attr_accessor id: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class FeaturedDocumentMissing
|
1068
|
+
attr_accessor id: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class FeaturedDocumentWithMetadata
|
1073
|
+
attr_accessor id: ::String
|
1074
|
+
attr_accessor title: ::String
|
1075
|
+
attr_accessor uri: ::String
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
class FeaturedResultsConflictException
|
1080
|
+
attr_accessor message: ::String
|
1081
|
+
attr_accessor conflicting_items: ::Array[Types::ConflictingItem]
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class FeaturedResultsItem
|
1086
|
+
attr_accessor id: ::String
|
1087
|
+
attr_accessor type: ("DOCUMENT" | "QUESTION_ANSWER" | "ANSWER")
|
1088
|
+
attr_accessor additional_attributes: ::Array[Types::AdditionalResultAttribute]
|
1089
|
+
attr_accessor document_id: ::String
|
1090
|
+
attr_accessor document_title: Types::TextWithHighlights
|
1091
|
+
attr_accessor document_excerpt: Types::TextWithHighlights
|
1092
|
+
attr_accessor document_uri: ::String
|
1093
|
+
attr_accessor document_attributes: ::Array[Types::DocumentAttribute]
|
1094
|
+
attr_accessor feedback_token: ::String
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class FeaturedResultsSet
|
1099
|
+
attr_accessor featured_results_set_id: ::String
|
1100
|
+
attr_accessor featured_results_set_name: ::String
|
1101
|
+
attr_accessor description: ::String
|
1102
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
1103
|
+
attr_accessor query_texts: ::Array[::String]
|
1104
|
+
attr_accessor featured_documents: ::Array[Types::FeaturedDocument]
|
1105
|
+
attr_accessor last_updated_timestamp: ::Integer
|
1106
|
+
attr_accessor creation_timestamp: ::Integer
|
1107
|
+
SENSITIVE: []
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class FeaturedResultsSetSummary
|
1111
|
+
attr_accessor featured_results_set_id: ::String
|
1112
|
+
attr_accessor featured_results_set_name: ::String
|
1113
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
1114
|
+
attr_accessor last_updated_timestamp: ::Integer
|
1115
|
+
attr_accessor creation_timestamp: ::Integer
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class FsxConfiguration
|
1120
|
+
attr_accessor file_system_id: ::String
|
1121
|
+
attr_accessor file_system_type: ("WINDOWS")
|
1122
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1123
|
+
attr_accessor secret_arn: ::String
|
1124
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1125
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1126
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class GetQuerySuggestionsRequest
|
1131
|
+
attr_accessor index_id: ::String
|
1132
|
+
attr_accessor query_text: ::String
|
1133
|
+
attr_accessor max_suggestions_count: ::Integer
|
1134
|
+
attr_accessor suggestion_types: ::Array[("QUERY" | "DOCUMENT_ATTRIBUTES")]
|
1135
|
+
attr_accessor attribute_suggestions_config: Types::AttributeSuggestionsGetConfig
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class GetQuerySuggestionsResponse
|
1140
|
+
attr_accessor query_suggestions_id: ::String
|
1141
|
+
attr_accessor suggestions: ::Array[Types::Suggestion]
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class GetSnapshotsRequest
|
1146
|
+
attr_accessor index_id: ::String
|
1147
|
+
attr_accessor interval: ("THIS_MONTH" | "THIS_WEEK" | "ONE_WEEK_AGO" | "TWO_WEEKS_AGO" | "ONE_MONTH_AGO" | "TWO_MONTHS_AGO")
|
1148
|
+
attr_accessor metric_type: ("QUERIES_BY_COUNT" | "QUERIES_BY_ZERO_CLICK_RATE" | "QUERIES_BY_ZERO_RESULT_RATE" | "DOCS_BY_CLICK_COUNT" | "AGG_QUERY_DOC_METRICS" | "TREND_QUERY_DOC_METRICS")
|
1149
|
+
attr_accessor next_token: ::String
|
1150
|
+
attr_accessor max_results: ::Integer
|
1151
|
+
SENSITIVE: []
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class GetSnapshotsResponse
|
1155
|
+
attr_accessor snap_shot_time_filter: Types::TimeRange
|
1156
|
+
attr_accessor snapshots_data_header: ::Array[::String]
|
1157
|
+
attr_accessor snapshots_data: ::Array[::Array[::String]]
|
1158
|
+
attr_accessor next_token: ::String
|
1159
|
+
SENSITIVE: []
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class GitHubConfiguration
|
1163
|
+
attr_accessor saa_s_configuration: Types::SaaSConfiguration
|
1164
|
+
attr_accessor on_premise_configuration: Types::OnPremiseConfiguration
|
1165
|
+
attr_accessor type: ("SAAS" | "ON_PREMISE")
|
1166
|
+
attr_accessor secret_arn: ::String
|
1167
|
+
attr_accessor use_change_log: bool
|
1168
|
+
attr_accessor git_hub_document_crawl_properties: Types::GitHubDocumentCrawlProperties
|
1169
|
+
attr_accessor repository_filter: ::Array[::String]
|
1170
|
+
attr_accessor inclusion_folder_name_patterns: ::Array[::String]
|
1171
|
+
attr_accessor inclusion_file_type_patterns: ::Array[::String]
|
1172
|
+
attr_accessor inclusion_file_name_patterns: ::Array[::String]
|
1173
|
+
attr_accessor exclusion_folder_name_patterns: ::Array[::String]
|
1174
|
+
attr_accessor exclusion_file_type_patterns: ::Array[::String]
|
1175
|
+
attr_accessor exclusion_file_name_patterns: ::Array[::String]
|
1176
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1177
|
+
attr_accessor git_hub_repository_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1178
|
+
attr_accessor git_hub_commit_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1179
|
+
attr_accessor git_hub_issue_document_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1180
|
+
attr_accessor git_hub_issue_comment_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1181
|
+
attr_accessor git_hub_issue_attachment_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1182
|
+
attr_accessor git_hub_pull_request_comment_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1183
|
+
attr_accessor git_hub_pull_request_document_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1184
|
+
attr_accessor git_hub_pull_request_document_attachment_configuration_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1185
|
+
SENSITIVE: []
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class GitHubDocumentCrawlProperties
|
1189
|
+
attr_accessor crawl_repository_documents: bool
|
1190
|
+
attr_accessor crawl_issue: bool
|
1191
|
+
attr_accessor crawl_issue_comment: bool
|
1192
|
+
attr_accessor crawl_issue_comment_attachment: bool
|
1193
|
+
attr_accessor crawl_pull_request: bool
|
1194
|
+
attr_accessor crawl_pull_request_comment: bool
|
1195
|
+
attr_accessor crawl_pull_request_comment_attachment: bool
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class GoogleDriveConfiguration
|
1200
|
+
attr_accessor secret_arn: ::String
|
1201
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1202
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1203
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1204
|
+
attr_accessor exclude_mime_types: ::Array[::String]
|
1205
|
+
attr_accessor exclude_user_accounts: ::Array[::String]
|
1206
|
+
attr_accessor exclude_shared_drives: ::Array[::String]
|
1207
|
+
SENSITIVE: []
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
class GroupMembers
|
1211
|
+
attr_accessor member_groups: ::Array[Types::MemberGroup]
|
1212
|
+
attr_accessor member_users: ::Array[Types::MemberUser]
|
1213
|
+
attr_accessor s3_pathfor_group_members: Types::S3Path
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class GroupOrderingIdSummary
|
1218
|
+
attr_accessor status: ("FAILED" | "SUCCEEDED" | "PROCESSING" | "DELETING" | "DELETED")
|
1219
|
+
attr_accessor last_updated_at: ::Time
|
1220
|
+
attr_accessor received_at: ::Time
|
1221
|
+
attr_accessor ordering_id: ::Integer
|
1222
|
+
attr_accessor failure_reason: ::String
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class GroupSummary
|
1227
|
+
attr_accessor group_id: ::String
|
1228
|
+
attr_accessor ordering_id: ::Integer
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class HierarchicalPrincipal
|
1233
|
+
attr_accessor principal_list: ::Array[Types::Principal]
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class Highlight
|
1238
|
+
attr_accessor begin_offset: ::Integer
|
1239
|
+
attr_accessor end_offset: ::Integer
|
1240
|
+
attr_accessor top_answer: bool
|
1241
|
+
attr_accessor type: ("STANDARD" | "THESAURUS_SYNONYM")
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class HookConfiguration
|
1246
|
+
attr_accessor invocation_condition: Types::DocumentAttributeCondition
|
1247
|
+
attr_accessor lambda_arn: ::String
|
1248
|
+
attr_accessor s3_bucket: ::String
|
1249
|
+
SENSITIVE: []
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
class IndexConfigurationSummary
|
1253
|
+
attr_accessor name: ::String
|
1254
|
+
attr_accessor id: ::String
|
1255
|
+
attr_accessor edition: ("DEVELOPER_EDITION" | "ENTERPRISE_EDITION")
|
1256
|
+
attr_accessor created_at: ::Time
|
1257
|
+
attr_accessor updated_at: ::Time
|
1258
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING" | "SYSTEM_UPDATING")
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class IndexStatistics
|
1263
|
+
attr_accessor faq_statistics: Types::FaqStatistics
|
1264
|
+
attr_accessor text_document_statistics: Types::TextDocumentStatistics
|
1265
|
+
SENSITIVE: []
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class InlineCustomDocumentEnrichmentConfiguration
|
1269
|
+
attr_accessor condition: Types::DocumentAttributeCondition
|
1270
|
+
attr_accessor target: Types::DocumentAttributeTarget
|
1271
|
+
attr_accessor document_content_deletion: bool
|
1272
|
+
SENSITIVE: []
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
class InternalServerException
|
1276
|
+
attr_accessor message: ::String
|
1277
|
+
SENSITIVE: []
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
class InvalidRequestException
|
1281
|
+
attr_accessor message: ::String
|
1282
|
+
SENSITIVE: []
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
class JiraConfiguration
|
1286
|
+
attr_accessor jira_account_url: ::String
|
1287
|
+
attr_accessor secret_arn: ::String
|
1288
|
+
attr_accessor use_change_log: bool
|
1289
|
+
attr_accessor project: ::Array[::String]
|
1290
|
+
attr_accessor issue_type: ::Array[::String]
|
1291
|
+
attr_accessor status: ::Array[::String]
|
1292
|
+
attr_accessor issue_sub_entity_filter: ::Array[("COMMENTS" | "ATTACHMENTS" | "WORKLOGS")]
|
1293
|
+
attr_accessor attachment_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1294
|
+
attr_accessor comment_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1295
|
+
attr_accessor issue_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1296
|
+
attr_accessor project_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1297
|
+
attr_accessor work_log_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1298
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1299
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1300
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1301
|
+
SENSITIVE: []
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class JsonTokenTypeConfiguration
|
1305
|
+
attr_accessor user_name_attribute_field: ::String
|
1306
|
+
attr_accessor group_attribute_field: ::String
|
1307
|
+
SENSITIVE: []
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class JwtTokenTypeConfiguration
|
1311
|
+
attr_accessor key_location: ("URL" | "SECRET_MANAGER")
|
1312
|
+
attr_accessor url: ::String
|
1313
|
+
attr_accessor secret_manager_arn: ::String
|
1314
|
+
attr_accessor user_name_attribute_field: ::String
|
1315
|
+
attr_accessor group_attribute_field: ::String
|
1316
|
+
attr_accessor issuer: ::String
|
1317
|
+
attr_accessor claim_regex: ::String
|
1318
|
+
SENSITIVE: []
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
class ListAccessControlConfigurationsRequest
|
1322
|
+
attr_accessor index_id: ::String
|
1323
|
+
attr_accessor next_token: ::String
|
1324
|
+
attr_accessor max_results: ::Integer
|
1325
|
+
SENSITIVE: []
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
class ListAccessControlConfigurationsResponse
|
1329
|
+
attr_accessor next_token: ::String
|
1330
|
+
attr_accessor access_control_configurations: ::Array[Types::AccessControlConfigurationSummary]
|
1331
|
+
SENSITIVE: []
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
class ListDataSourceSyncJobsRequest
|
1335
|
+
attr_accessor id: ::String
|
1336
|
+
attr_accessor index_id: ::String
|
1337
|
+
attr_accessor next_token: ::String
|
1338
|
+
attr_accessor max_results: ::Integer
|
1339
|
+
attr_accessor start_time_filter: Types::TimeRange
|
1340
|
+
attr_accessor status_filter: ("FAILED" | "SUCCEEDED" | "SYNCING" | "INCOMPLETE" | "STOPPING" | "ABORTED" | "SYNCING_INDEXING")
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class ListDataSourceSyncJobsResponse
|
1345
|
+
attr_accessor history: ::Array[Types::DataSourceSyncJob]
|
1346
|
+
attr_accessor next_token: ::String
|
1347
|
+
SENSITIVE: []
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class ListDataSourcesRequest
|
1351
|
+
attr_accessor index_id: ::String
|
1352
|
+
attr_accessor next_token: ::String
|
1353
|
+
attr_accessor max_results: ::Integer
|
1354
|
+
SENSITIVE: []
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
class ListDataSourcesResponse
|
1358
|
+
attr_accessor summary_items: ::Array[Types::DataSourceSummary]
|
1359
|
+
attr_accessor next_token: ::String
|
1360
|
+
SENSITIVE: []
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class ListEntityPersonasRequest
|
1364
|
+
attr_accessor id: ::String
|
1365
|
+
attr_accessor index_id: ::String
|
1366
|
+
attr_accessor next_token: ::String
|
1367
|
+
attr_accessor max_results: ::Integer
|
1368
|
+
SENSITIVE: []
|
1369
|
+
end
|
1370
|
+
|
1371
|
+
class ListEntityPersonasResponse
|
1372
|
+
attr_accessor summary_items: ::Array[Types::PersonasSummary]
|
1373
|
+
attr_accessor next_token: ::String
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
class ListExperienceEntitiesRequest
|
1378
|
+
attr_accessor id: ::String
|
1379
|
+
attr_accessor index_id: ::String
|
1380
|
+
attr_accessor next_token: ::String
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class ListExperienceEntitiesResponse
|
1385
|
+
attr_accessor summary_items: ::Array[Types::ExperienceEntitiesSummary]
|
1386
|
+
attr_accessor next_token: ::String
|
1387
|
+
SENSITIVE: []
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
class ListExperiencesRequest
|
1391
|
+
attr_accessor index_id: ::String
|
1392
|
+
attr_accessor next_token: ::String
|
1393
|
+
attr_accessor max_results: ::Integer
|
1394
|
+
SENSITIVE: []
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class ListExperiencesResponse
|
1398
|
+
attr_accessor summary_items: ::Array[Types::ExperiencesSummary]
|
1399
|
+
attr_accessor next_token: ::String
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class ListFaqsRequest
|
1404
|
+
attr_accessor index_id: ::String
|
1405
|
+
attr_accessor next_token: ::String
|
1406
|
+
attr_accessor max_results: ::Integer
|
1407
|
+
SENSITIVE: []
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class ListFaqsResponse
|
1411
|
+
attr_accessor next_token: ::String
|
1412
|
+
attr_accessor faq_summary_items: ::Array[Types::FaqSummary]
|
1413
|
+
SENSITIVE: []
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
class ListFeaturedResultsSetsRequest
|
1417
|
+
attr_accessor index_id: ::String
|
1418
|
+
attr_accessor next_token: ::String
|
1419
|
+
attr_accessor max_results: ::Integer
|
1420
|
+
SENSITIVE: []
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
class ListFeaturedResultsSetsResponse
|
1424
|
+
attr_accessor featured_results_set_summary_items: ::Array[Types::FeaturedResultsSetSummary]
|
1425
|
+
attr_accessor next_token: ::String
|
1426
|
+
SENSITIVE: []
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class ListGroupsOlderThanOrderingIdRequest
|
1430
|
+
attr_accessor index_id: ::String
|
1431
|
+
attr_accessor data_source_id: ::String
|
1432
|
+
attr_accessor ordering_id: ::Integer
|
1433
|
+
attr_accessor next_token: ::String
|
1434
|
+
attr_accessor max_results: ::Integer
|
1435
|
+
SENSITIVE: []
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
class ListGroupsOlderThanOrderingIdResponse
|
1439
|
+
attr_accessor groups_summaries: ::Array[Types::GroupSummary]
|
1440
|
+
attr_accessor next_token: ::String
|
1441
|
+
SENSITIVE: []
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class ListIndicesRequest
|
1445
|
+
attr_accessor next_token: ::String
|
1446
|
+
attr_accessor max_results: ::Integer
|
1447
|
+
SENSITIVE: []
|
1448
|
+
end
|
1449
|
+
|
1450
|
+
class ListIndicesResponse
|
1451
|
+
attr_accessor index_configuration_summary_items: ::Array[Types::IndexConfigurationSummary]
|
1452
|
+
attr_accessor next_token: ::String
|
1453
|
+
SENSITIVE: []
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
class ListQuerySuggestionsBlockListsRequest
|
1457
|
+
attr_accessor index_id: ::String
|
1458
|
+
attr_accessor next_token: ::String
|
1459
|
+
attr_accessor max_results: ::Integer
|
1460
|
+
SENSITIVE: []
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class ListQuerySuggestionsBlockListsResponse
|
1464
|
+
attr_accessor block_list_summary_items: ::Array[Types::QuerySuggestionsBlockListSummary]
|
1465
|
+
attr_accessor next_token: ::String
|
1466
|
+
SENSITIVE: []
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
class ListTagsForResourceRequest
|
1470
|
+
attr_accessor resource_arn: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class ListTagsForResourceResponse
|
1475
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1476
|
+
SENSITIVE: []
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class ListThesauriRequest
|
1480
|
+
attr_accessor index_id: ::String
|
1481
|
+
attr_accessor next_token: ::String
|
1482
|
+
attr_accessor max_results: ::Integer
|
1483
|
+
SENSITIVE: []
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
class ListThesauriResponse
|
1487
|
+
attr_accessor next_token: ::String
|
1488
|
+
attr_accessor thesaurus_summary_items: ::Array[Types::ThesaurusSummary]
|
1489
|
+
SENSITIVE: []
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
class MemberGroup
|
1493
|
+
attr_accessor group_id: ::String
|
1494
|
+
attr_accessor data_source_id: ::String
|
1495
|
+
SENSITIVE: []
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
class MemberUser
|
1499
|
+
attr_accessor user_id: ::String
|
1500
|
+
SENSITIVE: []
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
class OnPremiseConfiguration
|
1504
|
+
attr_accessor host_url: ::String
|
1505
|
+
attr_accessor organization_name: ::String
|
1506
|
+
attr_accessor ssl_certificate_s3_path: Types::S3Path
|
1507
|
+
SENSITIVE: []
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
class OneDriveConfiguration
|
1511
|
+
attr_accessor tenant_domain: ::String
|
1512
|
+
attr_accessor secret_arn: ::String
|
1513
|
+
attr_accessor one_drive_users: Types::OneDriveUsers
|
1514
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1515
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1516
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1517
|
+
attr_accessor disable_local_groups: bool
|
1518
|
+
SENSITIVE: []
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
class OneDriveUsers
|
1522
|
+
attr_accessor one_drive_user_list: ::Array[::String]
|
1523
|
+
attr_accessor one_drive_user_s3_path: Types::S3Path
|
1524
|
+
SENSITIVE: []
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
class PersonasSummary
|
1528
|
+
attr_accessor entity_id: ::String
|
1529
|
+
attr_accessor persona: ("OWNER" | "VIEWER")
|
1530
|
+
attr_accessor created_at: ::Time
|
1531
|
+
attr_accessor updated_at: ::Time
|
1532
|
+
SENSITIVE: []
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
class Principal
|
1536
|
+
attr_accessor name: ::String
|
1537
|
+
attr_accessor type: ("USER" | "GROUP")
|
1538
|
+
attr_accessor access: ("ALLOW" | "DENY")
|
1539
|
+
attr_accessor data_source_id: ::String
|
1540
|
+
SENSITIVE: []
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
class ProxyConfiguration
|
1544
|
+
attr_accessor host: ::String
|
1545
|
+
attr_accessor port: ::Integer
|
1546
|
+
attr_accessor credentials: ::String
|
1547
|
+
SENSITIVE: []
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class PutPrincipalMappingRequest
|
1551
|
+
attr_accessor index_id: ::String
|
1552
|
+
attr_accessor data_source_id: ::String
|
1553
|
+
attr_accessor group_id: ::String
|
1554
|
+
attr_accessor group_members: Types::GroupMembers
|
1555
|
+
attr_accessor ordering_id: ::Integer
|
1556
|
+
attr_accessor role_arn: ::String
|
1557
|
+
SENSITIVE: []
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
class QueryRequest
|
1561
|
+
attr_accessor index_id: ::String
|
1562
|
+
attr_accessor query_text: ::String
|
1563
|
+
attr_accessor attribute_filter: Types::AttributeFilter
|
1564
|
+
attr_accessor facets: ::Array[Types::Facet]
|
1565
|
+
attr_accessor requested_document_attributes: ::Array[::String]
|
1566
|
+
attr_accessor query_result_type_filter: ("DOCUMENT" | "QUESTION_ANSWER" | "ANSWER")
|
1567
|
+
attr_accessor document_relevance_override_configurations: ::Array[Types::DocumentRelevanceConfiguration]
|
1568
|
+
attr_accessor page_number: ::Integer
|
1569
|
+
attr_accessor page_size: ::Integer
|
1570
|
+
attr_accessor sorting_configuration: Types::SortingConfiguration
|
1571
|
+
attr_accessor sorting_configurations: ::Array[Types::SortingConfiguration]
|
1572
|
+
attr_accessor user_context: Types::UserContext
|
1573
|
+
attr_accessor visitor_id: ::String
|
1574
|
+
attr_accessor spell_correction_configuration: Types::SpellCorrectionConfiguration
|
1575
|
+
attr_accessor collapse_configuration: Types::CollapseConfiguration
|
1576
|
+
SENSITIVE: []
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
class QueryResult
|
1580
|
+
attr_accessor query_id: ::String
|
1581
|
+
attr_accessor result_items: ::Array[Types::QueryResultItem]
|
1582
|
+
attr_accessor facet_results: ::Array[Types::FacetResult]
|
1583
|
+
attr_accessor total_number_of_results: ::Integer
|
1584
|
+
attr_accessor warnings: ::Array[Types::Warning]
|
1585
|
+
attr_accessor spell_corrected_queries: ::Array[Types::SpellCorrectedQuery]
|
1586
|
+
attr_accessor featured_results_items: ::Array[Types::FeaturedResultsItem]
|
1587
|
+
SENSITIVE: []
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
class QueryResultItem
|
1591
|
+
attr_accessor id: ::String
|
1592
|
+
attr_accessor type: ("DOCUMENT" | "QUESTION_ANSWER" | "ANSWER")
|
1593
|
+
attr_accessor format: ("TABLE" | "TEXT")
|
1594
|
+
attr_accessor additional_attributes: ::Array[Types::AdditionalResultAttribute]
|
1595
|
+
attr_accessor document_id: ::String
|
1596
|
+
attr_accessor document_title: Types::TextWithHighlights
|
1597
|
+
attr_accessor document_excerpt: Types::TextWithHighlights
|
1598
|
+
attr_accessor document_uri: ::String
|
1599
|
+
attr_accessor document_attributes: ::Array[Types::DocumentAttribute]
|
1600
|
+
attr_accessor score_attributes: Types::ScoreAttributes
|
1601
|
+
attr_accessor feedback_token: ::String
|
1602
|
+
attr_accessor table_excerpt: Types::TableExcerpt
|
1603
|
+
attr_accessor collapsed_result_detail: Types::CollapsedResultDetail
|
1604
|
+
SENSITIVE: []
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
class QuerySuggestionsBlockListSummary
|
1608
|
+
attr_accessor id: ::String
|
1609
|
+
attr_accessor name: ::String
|
1610
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING" | "ACTIVE_BUT_UPDATE_FAILED" | "FAILED")
|
1611
|
+
attr_accessor created_at: ::Time
|
1612
|
+
attr_accessor updated_at: ::Time
|
1613
|
+
attr_accessor item_count: ::Integer
|
1614
|
+
SENSITIVE: []
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
class QuipConfiguration
|
1618
|
+
attr_accessor domain: ::String
|
1619
|
+
attr_accessor secret_arn: ::String
|
1620
|
+
attr_accessor crawl_file_comments: bool
|
1621
|
+
attr_accessor crawl_chat_rooms: bool
|
1622
|
+
attr_accessor crawl_attachments: bool
|
1623
|
+
attr_accessor folder_ids: ::Array[::String]
|
1624
|
+
attr_accessor thread_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1625
|
+
attr_accessor message_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1626
|
+
attr_accessor attachment_field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1627
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1628
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1629
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1630
|
+
SENSITIVE: []
|
1631
|
+
end
|
1632
|
+
|
1633
|
+
class Relevance
|
1634
|
+
attr_accessor freshness: bool
|
1635
|
+
attr_accessor importance: ::Integer
|
1636
|
+
attr_accessor duration: ::String
|
1637
|
+
attr_accessor rank_order: ("ASCENDING" | "DESCENDING")
|
1638
|
+
attr_accessor value_importance_map: ::Hash[::String, ::Integer]
|
1639
|
+
SENSITIVE: []
|
1640
|
+
end
|
1641
|
+
|
1642
|
+
class RelevanceFeedback
|
1643
|
+
attr_accessor result_id: ::String
|
1644
|
+
attr_accessor relevance_value: ("RELEVANT" | "NOT_RELEVANT")
|
1645
|
+
SENSITIVE: []
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
class ResourceAlreadyExistException
|
1649
|
+
attr_accessor message: ::String
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
class ResourceInUseException
|
1654
|
+
attr_accessor message: ::String
|
1655
|
+
SENSITIVE: []
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
class ResourceNotFoundException
|
1659
|
+
attr_accessor message: ::String
|
1660
|
+
SENSITIVE: []
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
class ResourceUnavailableException
|
1664
|
+
attr_accessor message: ::String
|
1665
|
+
SENSITIVE: []
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
class RetrieveRequest
|
1669
|
+
attr_accessor index_id: ::String
|
1670
|
+
attr_accessor query_text: ::String
|
1671
|
+
attr_accessor attribute_filter: Types::AttributeFilter
|
1672
|
+
attr_accessor requested_document_attributes: ::Array[::String]
|
1673
|
+
attr_accessor document_relevance_override_configurations: ::Array[Types::DocumentRelevanceConfiguration]
|
1674
|
+
attr_accessor page_number: ::Integer
|
1675
|
+
attr_accessor page_size: ::Integer
|
1676
|
+
attr_accessor user_context: Types::UserContext
|
1677
|
+
SENSITIVE: []
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
class RetrieveResult
|
1681
|
+
attr_accessor query_id: ::String
|
1682
|
+
attr_accessor result_items: ::Array[Types::RetrieveResultItem]
|
1683
|
+
SENSITIVE: []
|
1684
|
+
end
|
1685
|
+
|
1686
|
+
class RetrieveResultItem
|
1687
|
+
attr_accessor id: ::String
|
1688
|
+
attr_accessor document_id: ::String
|
1689
|
+
attr_accessor document_title: ::String
|
1690
|
+
attr_accessor content: ::String
|
1691
|
+
attr_accessor document_uri: ::String
|
1692
|
+
attr_accessor document_attributes: ::Array[Types::DocumentAttribute]
|
1693
|
+
attr_accessor score_attributes: Types::ScoreAttributes
|
1694
|
+
SENSITIVE: []
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
class S3DataSourceConfiguration
|
1698
|
+
attr_accessor bucket_name: ::String
|
1699
|
+
attr_accessor inclusion_prefixes: ::Array[::String]
|
1700
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1701
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1702
|
+
attr_accessor documents_metadata_configuration: Types::DocumentsMetadataConfiguration
|
1703
|
+
attr_accessor access_control_list_configuration: Types::AccessControlListConfiguration
|
1704
|
+
SENSITIVE: []
|
1705
|
+
end
|
1706
|
+
|
1707
|
+
class S3Path
|
1708
|
+
attr_accessor bucket: ::String
|
1709
|
+
attr_accessor key: ::String
|
1710
|
+
SENSITIVE: []
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
class SaaSConfiguration
|
1714
|
+
attr_accessor organization_name: ::String
|
1715
|
+
attr_accessor host_url: ::String
|
1716
|
+
SENSITIVE: []
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
class SalesforceChatterFeedConfiguration
|
1720
|
+
attr_accessor document_data_field_name: ::String
|
1721
|
+
attr_accessor document_title_field_name: ::String
|
1722
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1723
|
+
attr_accessor include_filter_types: ::Array[("ACTIVE_USER" | "STANDARD_USER")]
|
1724
|
+
SENSITIVE: []
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
class SalesforceConfiguration
|
1728
|
+
attr_accessor server_url: ::String
|
1729
|
+
attr_accessor secret_arn: ::String
|
1730
|
+
attr_accessor standard_object_configurations: ::Array[Types::SalesforceStandardObjectConfiguration]
|
1731
|
+
attr_accessor knowledge_article_configuration: Types::SalesforceKnowledgeArticleConfiguration
|
1732
|
+
attr_accessor chatter_feed_configuration: Types::SalesforceChatterFeedConfiguration
|
1733
|
+
attr_accessor crawl_attachments: bool
|
1734
|
+
attr_accessor standard_object_attachment_configuration: Types::SalesforceStandardObjectAttachmentConfiguration
|
1735
|
+
attr_accessor include_attachment_file_patterns: ::Array[::String]
|
1736
|
+
attr_accessor exclude_attachment_file_patterns: ::Array[::String]
|
1737
|
+
SENSITIVE: []
|
1738
|
+
end
|
1739
|
+
|
1740
|
+
class SalesforceCustomKnowledgeArticleTypeConfiguration
|
1741
|
+
attr_accessor name: ::String
|
1742
|
+
attr_accessor document_data_field_name: ::String
|
1743
|
+
attr_accessor document_title_field_name: ::String
|
1744
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1745
|
+
SENSITIVE: []
|
1746
|
+
end
|
1747
|
+
|
1748
|
+
class SalesforceKnowledgeArticleConfiguration
|
1749
|
+
attr_accessor included_states: ::Array[("DRAFT" | "PUBLISHED" | "ARCHIVED")]
|
1750
|
+
attr_accessor standard_knowledge_article_type_configuration: Types::SalesforceStandardKnowledgeArticleTypeConfiguration
|
1751
|
+
attr_accessor custom_knowledge_article_type_configurations: ::Array[Types::SalesforceCustomKnowledgeArticleTypeConfiguration]
|
1752
|
+
SENSITIVE: []
|
1753
|
+
end
|
1754
|
+
|
1755
|
+
class SalesforceStandardKnowledgeArticleTypeConfiguration
|
1756
|
+
attr_accessor document_data_field_name: ::String
|
1757
|
+
attr_accessor document_title_field_name: ::String
|
1758
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1759
|
+
SENSITIVE: []
|
1760
|
+
end
|
1761
|
+
|
1762
|
+
class SalesforceStandardObjectAttachmentConfiguration
|
1763
|
+
attr_accessor document_title_field_name: ::String
|
1764
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1765
|
+
SENSITIVE: []
|
1766
|
+
end
|
1767
|
+
|
1768
|
+
class SalesforceStandardObjectConfiguration
|
1769
|
+
attr_accessor name: ("ACCOUNT" | "CAMPAIGN" | "CASE" | "CONTACT" | "CONTRACT" | "DOCUMENT" | "GROUP" | "IDEA" | "LEAD" | "OPPORTUNITY" | "PARTNER" | "PRICEBOOK" | "PRODUCT" | "PROFILE" | "SOLUTION" | "TASK" | "USER")
|
1770
|
+
attr_accessor document_data_field_name: ::String
|
1771
|
+
attr_accessor document_title_field_name: ::String
|
1772
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1773
|
+
SENSITIVE: []
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
class ScoreAttributes
|
1777
|
+
attr_accessor score_confidence: ("VERY_HIGH" | "HIGH" | "MEDIUM" | "LOW" | "NOT_AVAILABLE")
|
1778
|
+
SENSITIVE: []
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
class Search
|
1782
|
+
attr_accessor facetable: bool
|
1783
|
+
attr_accessor searchable: bool
|
1784
|
+
attr_accessor displayable: bool
|
1785
|
+
attr_accessor sortable: bool
|
1786
|
+
SENSITIVE: []
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
class SeedUrlConfiguration
|
1790
|
+
attr_accessor seed_urls: ::Array[::String]
|
1791
|
+
attr_accessor web_crawler_mode: ("HOST_ONLY" | "SUBDOMAINS" | "EVERYTHING")
|
1792
|
+
SENSITIVE: []
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
class ServerSideEncryptionConfiguration
|
1796
|
+
attr_accessor kms_key_id: ::String
|
1797
|
+
SENSITIVE: [:kms_key_id]
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class ServiceNowConfiguration
|
1801
|
+
attr_accessor host_url: ::String
|
1802
|
+
attr_accessor secret_arn: ::String
|
1803
|
+
attr_accessor service_now_build_version: ("LONDON" | "OTHERS")
|
1804
|
+
attr_accessor knowledge_article_configuration: Types::ServiceNowKnowledgeArticleConfiguration
|
1805
|
+
attr_accessor service_catalog_configuration: Types::ServiceNowServiceCatalogConfiguration
|
1806
|
+
attr_accessor authentication_type: ("HTTP_BASIC" | "OAUTH2")
|
1807
|
+
SENSITIVE: []
|
1808
|
+
end
|
1809
|
+
|
1810
|
+
class ServiceNowKnowledgeArticleConfiguration
|
1811
|
+
attr_accessor crawl_attachments: bool
|
1812
|
+
attr_accessor include_attachment_file_patterns: ::Array[::String]
|
1813
|
+
attr_accessor exclude_attachment_file_patterns: ::Array[::String]
|
1814
|
+
attr_accessor document_data_field_name: ::String
|
1815
|
+
attr_accessor document_title_field_name: ::String
|
1816
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1817
|
+
attr_accessor filter_query: ::String
|
1818
|
+
SENSITIVE: []
|
1819
|
+
end
|
1820
|
+
|
1821
|
+
class ServiceNowServiceCatalogConfiguration
|
1822
|
+
attr_accessor crawl_attachments: bool
|
1823
|
+
attr_accessor include_attachment_file_patterns: ::Array[::String]
|
1824
|
+
attr_accessor exclude_attachment_file_patterns: ::Array[::String]
|
1825
|
+
attr_accessor document_data_field_name: ::String
|
1826
|
+
attr_accessor document_title_field_name: ::String
|
1827
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1828
|
+
SENSITIVE: []
|
1829
|
+
end
|
1830
|
+
|
1831
|
+
class ServiceQuotaExceededException
|
1832
|
+
attr_accessor message: ::String
|
1833
|
+
SENSITIVE: []
|
1834
|
+
end
|
1835
|
+
|
1836
|
+
class SharePointConfiguration
|
1837
|
+
attr_accessor share_point_version: ("SHAREPOINT_2013" | "SHAREPOINT_2016" | "SHAREPOINT_ONLINE" | "SHAREPOINT_2019")
|
1838
|
+
attr_accessor urls: ::Array[::String]
|
1839
|
+
attr_accessor secret_arn: ::String
|
1840
|
+
attr_accessor crawl_attachments: bool
|
1841
|
+
attr_accessor use_change_log: bool
|
1842
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1843
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1844
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1845
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1846
|
+
attr_accessor document_title_field_name: ::String
|
1847
|
+
attr_accessor disable_local_groups: bool
|
1848
|
+
attr_accessor ssl_certificate_s3_path: Types::S3Path
|
1849
|
+
attr_accessor authentication_type: ("HTTP_BASIC" | "OAUTH2")
|
1850
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
1851
|
+
SENSITIVE: []
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
class SiteMapsConfiguration
|
1855
|
+
attr_accessor site_maps: ::Array[::String]
|
1856
|
+
SENSITIVE: []
|
1857
|
+
end
|
1858
|
+
|
1859
|
+
class SlackConfiguration
|
1860
|
+
attr_accessor team_id: ::String
|
1861
|
+
attr_accessor secret_arn: ::String
|
1862
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1863
|
+
attr_accessor slack_entity_list: ::Array[("PUBLIC_CHANNEL" | "PRIVATE_CHANNEL" | "GROUP_MESSAGE" | "DIRECT_MESSAGE")]
|
1864
|
+
attr_accessor use_change_log: bool
|
1865
|
+
attr_accessor crawl_bot_message: bool
|
1866
|
+
attr_accessor exclude_archived: bool
|
1867
|
+
attr_accessor since_crawl_date: ::String
|
1868
|
+
attr_accessor look_back_period: ::Integer
|
1869
|
+
attr_accessor private_channel_filter: ::Array[::String]
|
1870
|
+
attr_accessor public_channel_filter: ::Array[::String]
|
1871
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
1872
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
1873
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
1874
|
+
SENSITIVE: []
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
class SortingConfiguration
|
1878
|
+
attr_accessor document_attribute_key: ::String
|
1879
|
+
attr_accessor sort_order: ("DESC" | "ASC")
|
1880
|
+
SENSITIVE: []
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
class SourceDocument
|
1884
|
+
attr_accessor document_id: ::String
|
1885
|
+
attr_accessor suggestion_attributes: ::Array[::String]
|
1886
|
+
attr_accessor additional_attributes: ::Array[Types::DocumentAttribute]
|
1887
|
+
SENSITIVE: []
|
1888
|
+
end
|
1889
|
+
|
1890
|
+
class SpellCorrectedQuery
|
1891
|
+
attr_accessor suggested_query_text: ::String
|
1892
|
+
attr_accessor corrections: ::Array[Types::Correction]
|
1893
|
+
SENSITIVE: []
|
1894
|
+
end
|
1895
|
+
|
1896
|
+
class SpellCorrectionConfiguration
|
1897
|
+
attr_accessor include_query_spell_check_suggestions: bool
|
1898
|
+
SENSITIVE: []
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
class SqlConfiguration
|
1902
|
+
attr_accessor query_identifiers_enclosing_option: ("DOUBLE_QUOTES" | "NONE")
|
1903
|
+
SENSITIVE: []
|
1904
|
+
end
|
1905
|
+
|
1906
|
+
class StartDataSourceSyncJobRequest
|
1907
|
+
attr_accessor id: ::String
|
1908
|
+
attr_accessor index_id: ::String
|
1909
|
+
SENSITIVE: []
|
1910
|
+
end
|
1911
|
+
|
1912
|
+
class StartDataSourceSyncJobResponse
|
1913
|
+
attr_accessor execution_id: ::String
|
1914
|
+
SENSITIVE: []
|
1915
|
+
end
|
1916
|
+
|
1917
|
+
class Status
|
1918
|
+
attr_accessor document_id: ::String
|
1919
|
+
attr_accessor document_status: ("NOT_FOUND" | "PROCESSING" | "INDEXED" | "UPDATED" | "FAILED" | "UPDATE_FAILED")
|
1920
|
+
attr_accessor failure_code: ::String
|
1921
|
+
attr_accessor failure_reason: ::String
|
1922
|
+
SENSITIVE: []
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
class StopDataSourceSyncJobRequest
|
1926
|
+
attr_accessor id: ::String
|
1927
|
+
attr_accessor index_id: ::String
|
1928
|
+
SENSITIVE: []
|
1929
|
+
end
|
1930
|
+
|
1931
|
+
class SubmitFeedbackRequest
|
1932
|
+
attr_accessor index_id: ::String
|
1933
|
+
attr_accessor query_id: ::String
|
1934
|
+
attr_accessor click_feedback_items: ::Array[Types::ClickFeedback]
|
1935
|
+
attr_accessor relevance_feedback_items: ::Array[Types::RelevanceFeedback]
|
1936
|
+
SENSITIVE: []
|
1937
|
+
end
|
1938
|
+
|
1939
|
+
class SuggestableConfig
|
1940
|
+
attr_accessor attribute_name: ::String
|
1941
|
+
attr_accessor suggestable: bool
|
1942
|
+
SENSITIVE: []
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
class Suggestion
|
1946
|
+
attr_accessor id: ::String
|
1947
|
+
attr_accessor value: Types::SuggestionValue
|
1948
|
+
attr_accessor source_documents: ::Array[Types::SourceDocument]
|
1949
|
+
SENSITIVE: []
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
class SuggestionHighlight
|
1953
|
+
attr_accessor begin_offset: ::Integer
|
1954
|
+
attr_accessor end_offset: ::Integer
|
1955
|
+
SENSITIVE: []
|
1956
|
+
end
|
1957
|
+
|
1958
|
+
class SuggestionTextWithHighlights
|
1959
|
+
attr_accessor text: ::String
|
1960
|
+
attr_accessor highlights: ::Array[Types::SuggestionHighlight]
|
1961
|
+
SENSITIVE: []
|
1962
|
+
end
|
1963
|
+
|
1964
|
+
class SuggestionValue
|
1965
|
+
attr_accessor text: Types::SuggestionTextWithHighlights
|
1966
|
+
SENSITIVE: []
|
1967
|
+
end
|
1968
|
+
|
1969
|
+
class TableCell
|
1970
|
+
attr_accessor value: ::String
|
1971
|
+
attr_accessor top_answer: bool
|
1972
|
+
attr_accessor highlighted: bool
|
1973
|
+
attr_accessor header: bool
|
1974
|
+
SENSITIVE: []
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
class TableExcerpt
|
1978
|
+
attr_accessor rows: ::Array[Types::TableRow]
|
1979
|
+
attr_accessor total_number_of_rows: ::Integer
|
1980
|
+
SENSITIVE: []
|
1981
|
+
end
|
1982
|
+
|
1983
|
+
class TableRow
|
1984
|
+
attr_accessor cells: ::Array[Types::TableCell]
|
1985
|
+
SENSITIVE: []
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
class Tag
|
1989
|
+
attr_accessor key: ::String
|
1990
|
+
attr_accessor value: ::String
|
1991
|
+
SENSITIVE: []
|
1992
|
+
end
|
1993
|
+
|
1994
|
+
class TagResourceRequest
|
1995
|
+
attr_accessor resource_arn: ::String
|
1996
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1997
|
+
SENSITIVE: []
|
1998
|
+
end
|
1999
|
+
|
2000
|
+
class TagResourceResponse < Aws::EmptyStructure
|
2001
|
+
end
|
2002
|
+
|
2003
|
+
class TemplateConfiguration
|
2004
|
+
attr_accessor template: untyped
|
2005
|
+
SENSITIVE: []
|
2006
|
+
end
|
2007
|
+
|
2008
|
+
class TextDocumentStatistics
|
2009
|
+
attr_accessor indexed_text_documents_count: ::Integer
|
2010
|
+
attr_accessor indexed_text_bytes: ::Integer
|
2011
|
+
SENSITIVE: []
|
2012
|
+
end
|
2013
|
+
|
2014
|
+
class TextWithHighlights
|
2015
|
+
attr_accessor text: ::String
|
2016
|
+
attr_accessor highlights: ::Array[Types::Highlight]
|
2017
|
+
SENSITIVE: []
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
class ThesaurusSummary
|
2021
|
+
attr_accessor id: ::String
|
2022
|
+
attr_accessor name: ::String
|
2023
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "ACTIVE_BUT_UPDATE_FAILED" | "FAILED")
|
2024
|
+
attr_accessor created_at: ::Time
|
2025
|
+
attr_accessor updated_at: ::Time
|
2026
|
+
SENSITIVE: []
|
2027
|
+
end
|
2028
|
+
|
2029
|
+
class ThrottlingException
|
2030
|
+
attr_accessor message: ::String
|
2031
|
+
SENSITIVE: []
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
class TimeRange
|
2035
|
+
attr_accessor start_time: ::Time
|
2036
|
+
attr_accessor end_time: ::Time
|
2037
|
+
SENSITIVE: []
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
class UntagResourceRequest
|
2041
|
+
attr_accessor resource_arn: ::String
|
2042
|
+
attr_accessor tag_keys: ::Array[::String]
|
2043
|
+
SENSITIVE: []
|
2044
|
+
end
|
2045
|
+
|
2046
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
class UpdateAccessControlConfigurationRequest
|
2050
|
+
attr_accessor index_id: ::String
|
2051
|
+
attr_accessor id: ::String
|
2052
|
+
attr_accessor name: ::String
|
2053
|
+
attr_accessor description: ::String
|
2054
|
+
attr_accessor access_control_list: ::Array[Types::Principal]
|
2055
|
+
attr_accessor hierarchical_access_control_list: ::Array[Types::HierarchicalPrincipal]
|
2056
|
+
SENSITIVE: []
|
2057
|
+
end
|
2058
|
+
|
2059
|
+
class UpdateAccessControlConfigurationResponse < Aws::EmptyStructure
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
class UpdateDataSourceRequest
|
2063
|
+
attr_accessor id: ::String
|
2064
|
+
attr_accessor name: ::String
|
2065
|
+
attr_accessor index_id: ::String
|
2066
|
+
attr_accessor configuration: Types::DataSourceConfiguration
|
2067
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
2068
|
+
attr_accessor description: ::String
|
2069
|
+
attr_accessor schedule: ::String
|
2070
|
+
attr_accessor role_arn: ::String
|
2071
|
+
attr_accessor language_code: ::String
|
2072
|
+
attr_accessor custom_document_enrichment_configuration: Types::CustomDocumentEnrichmentConfiguration
|
2073
|
+
SENSITIVE: []
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
class UpdateExperienceRequest
|
2077
|
+
attr_accessor id: ::String
|
2078
|
+
attr_accessor name: ::String
|
2079
|
+
attr_accessor index_id: ::String
|
2080
|
+
attr_accessor role_arn: ::String
|
2081
|
+
attr_accessor configuration: Types::ExperienceConfiguration
|
2082
|
+
attr_accessor description: ::String
|
2083
|
+
SENSITIVE: []
|
2084
|
+
end
|
2085
|
+
|
2086
|
+
class UpdateFeaturedResultsSetRequest
|
2087
|
+
attr_accessor index_id: ::String
|
2088
|
+
attr_accessor featured_results_set_id: ::String
|
2089
|
+
attr_accessor featured_results_set_name: ::String
|
2090
|
+
attr_accessor description: ::String
|
2091
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
2092
|
+
attr_accessor query_texts: ::Array[::String]
|
2093
|
+
attr_accessor featured_documents: ::Array[Types::FeaturedDocument]
|
2094
|
+
SENSITIVE: []
|
2095
|
+
end
|
2096
|
+
|
2097
|
+
class UpdateFeaturedResultsSetResponse
|
2098
|
+
attr_accessor featured_results_set: Types::FeaturedResultsSet
|
2099
|
+
SENSITIVE: []
|
2100
|
+
end
|
2101
|
+
|
2102
|
+
class UpdateIndexRequest
|
2103
|
+
attr_accessor id: ::String
|
2104
|
+
attr_accessor name: ::String
|
2105
|
+
attr_accessor role_arn: ::String
|
2106
|
+
attr_accessor description: ::String
|
2107
|
+
attr_accessor document_metadata_configuration_updates: ::Array[Types::DocumentMetadataConfiguration]
|
2108
|
+
attr_accessor capacity_units: Types::CapacityUnitsConfiguration
|
2109
|
+
attr_accessor user_token_configurations: ::Array[Types::UserTokenConfiguration]
|
2110
|
+
attr_accessor user_context_policy: ("ATTRIBUTE_FILTER" | "USER_TOKEN")
|
2111
|
+
attr_accessor user_group_resolution_configuration: Types::UserGroupResolutionConfiguration
|
2112
|
+
SENSITIVE: []
|
2113
|
+
end
|
2114
|
+
|
2115
|
+
class UpdateQuerySuggestionsBlockListRequest
|
2116
|
+
attr_accessor index_id: ::String
|
2117
|
+
attr_accessor id: ::String
|
2118
|
+
attr_accessor name: ::String
|
2119
|
+
attr_accessor description: ::String
|
2120
|
+
attr_accessor source_s3_path: Types::S3Path
|
2121
|
+
attr_accessor role_arn: ::String
|
2122
|
+
SENSITIVE: []
|
2123
|
+
end
|
2124
|
+
|
2125
|
+
class UpdateQuerySuggestionsConfigRequest
|
2126
|
+
attr_accessor index_id: ::String
|
2127
|
+
attr_accessor mode: ("ENABLED" | "LEARN_ONLY")
|
2128
|
+
attr_accessor query_log_look_back_window_in_days: ::Integer
|
2129
|
+
attr_accessor include_queries_without_user_information: bool
|
2130
|
+
attr_accessor minimum_number_of_querying_users: ::Integer
|
2131
|
+
attr_accessor minimum_query_count: ::Integer
|
2132
|
+
attr_accessor attribute_suggestions_config: Types::AttributeSuggestionsUpdateConfig
|
2133
|
+
SENSITIVE: []
|
2134
|
+
end
|
2135
|
+
|
2136
|
+
class UpdateThesaurusRequest
|
2137
|
+
attr_accessor id: ::String
|
2138
|
+
attr_accessor name: ::String
|
2139
|
+
attr_accessor index_id: ::String
|
2140
|
+
attr_accessor description: ::String
|
2141
|
+
attr_accessor role_arn: ::String
|
2142
|
+
attr_accessor source_s3_path: Types::S3Path
|
2143
|
+
SENSITIVE: []
|
2144
|
+
end
|
2145
|
+
|
2146
|
+
class Urls
|
2147
|
+
attr_accessor seed_url_configuration: Types::SeedUrlConfiguration
|
2148
|
+
attr_accessor site_maps_configuration: Types::SiteMapsConfiguration
|
2149
|
+
SENSITIVE: []
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
class UserContext
|
2153
|
+
attr_accessor token: ::String
|
2154
|
+
attr_accessor user_id: ::String
|
2155
|
+
attr_accessor groups: ::Array[::String]
|
2156
|
+
attr_accessor data_source_groups: ::Array[Types::DataSourceGroup]
|
2157
|
+
SENSITIVE: []
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
class UserGroupResolutionConfiguration
|
2161
|
+
attr_accessor user_group_resolution_mode: ("AWS_SSO" | "NONE")
|
2162
|
+
SENSITIVE: []
|
2163
|
+
end
|
2164
|
+
|
2165
|
+
class UserIdentityConfiguration
|
2166
|
+
attr_accessor identity_attribute_name: ::String
|
2167
|
+
SENSITIVE: []
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
class UserTokenConfiguration
|
2171
|
+
attr_accessor jwt_token_type_configuration: Types::JwtTokenTypeConfiguration
|
2172
|
+
attr_accessor json_token_type_configuration: Types::JsonTokenTypeConfiguration
|
2173
|
+
SENSITIVE: []
|
2174
|
+
end
|
2175
|
+
|
2176
|
+
class ValidationException
|
2177
|
+
attr_accessor message: ::String
|
2178
|
+
SENSITIVE: []
|
2179
|
+
end
|
2180
|
+
|
2181
|
+
class Warning
|
2182
|
+
attr_accessor message: ::String
|
2183
|
+
attr_accessor code: ("QUERY_LANGUAGE_INVALID_SYNTAX")
|
2184
|
+
SENSITIVE: []
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
class WebCrawlerConfiguration
|
2188
|
+
attr_accessor urls: Types::Urls
|
2189
|
+
attr_accessor crawl_depth: ::Integer
|
2190
|
+
attr_accessor max_links_per_page: ::Integer
|
2191
|
+
attr_accessor max_content_size_per_page_in_mega_bytes: ::Float
|
2192
|
+
attr_accessor max_urls_per_minute_crawl_rate: ::Integer
|
2193
|
+
attr_accessor url_inclusion_patterns: ::Array[::String]
|
2194
|
+
attr_accessor url_exclusion_patterns: ::Array[::String]
|
2195
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
2196
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
2197
|
+
SENSITIVE: []
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
class WorkDocsConfiguration
|
2201
|
+
attr_accessor organization_id: ::String
|
2202
|
+
attr_accessor crawl_comments: bool
|
2203
|
+
attr_accessor use_change_log: bool
|
2204
|
+
attr_accessor inclusion_patterns: ::Array[::String]
|
2205
|
+
attr_accessor exclusion_patterns: ::Array[::String]
|
2206
|
+
attr_accessor field_mappings: ::Array[Types::DataSourceToIndexFieldMapping]
|
2207
|
+
SENSITIVE: []
|
2208
|
+
end
|
2209
|
+
end
|
2210
|
+
end
|