aws-sdk-qbusiness 1.0.0 → 1.2.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-qbusiness/client.rb +55 -4
- data/lib/aws-sdk-qbusiness/client_api.rb +45 -0
- data/lib/aws-sdk-qbusiness/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-qbusiness/types.rb +210 -16
- data/lib/aws-sdk-qbusiness.rb +1 -1
- data/sig/client.rbs +1404 -0
- data/sig/errors.rbs +48 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1443 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1443 @@
|
|
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::QBusiness
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessConfiguration
|
12
|
+
attr_accessor access_controls: ::Array[Types::AccessControl]
|
13
|
+
attr_accessor member_relation: ("AND" | "OR")
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AccessControl
|
18
|
+
attr_accessor member_relation: ("AND" | "OR")
|
19
|
+
attr_accessor principals: ::Array[Types::Principal]
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AccessDeniedException
|
24
|
+
attr_accessor message: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class ActionExecution
|
29
|
+
attr_accessor payload: ::Hash[::String, Types::ActionExecutionPayloadField]
|
30
|
+
attr_accessor payload_field_name_separator: ::String
|
31
|
+
attr_accessor plugin_id: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ActionExecutionPayloadField
|
36
|
+
attr_accessor value: untyped
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class ActionReview
|
41
|
+
attr_accessor payload: ::Hash[::String, Types::ActionReviewPayloadField]
|
42
|
+
attr_accessor payload_field_name_separator: ::String
|
43
|
+
attr_accessor plugin_id: ::String
|
44
|
+
attr_accessor plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK")
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class ActionReviewPayloadField
|
49
|
+
attr_accessor allowed_values: ::Array[Types::ActionReviewPayloadFieldAllowedValue]
|
50
|
+
attr_accessor display_name: ::String
|
51
|
+
attr_accessor display_order: ::Integer
|
52
|
+
attr_accessor required: bool
|
53
|
+
attr_accessor type: ("STRING" | "NUMBER" | "ARRAY" | "BOOLEAN")
|
54
|
+
attr_accessor value: untyped
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class ActionReviewPayloadFieldAllowedValue
|
59
|
+
attr_accessor display_value: untyped
|
60
|
+
attr_accessor value: untyped
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class Application
|
65
|
+
attr_accessor application_id: ::String
|
66
|
+
attr_accessor created_at: ::Time
|
67
|
+
attr_accessor display_name: ::String
|
68
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
69
|
+
attr_accessor updated_at: ::Time
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class AppliedAttachmentsConfiguration
|
74
|
+
attr_accessor attachments_control_mode: ("ENABLED" | "DISABLED")
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class AttachmentInput
|
79
|
+
attr_accessor data: ::String
|
80
|
+
attr_accessor name: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class AttachmentOutput
|
85
|
+
attr_accessor error: Types::ErrorDetail
|
86
|
+
attr_accessor name: ::String
|
87
|
+
attr_accessor status: ("FAILED" | "SUCCEEDED")
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class AttachmentsConfiguration
|
92
|
+
attr_accessor attachments_control_mode: ("ENABLED" | "DISABLED")
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class AttributeFilter
|
97
|
+
attr_accessor and_all_filters: ::Array[Types::AttributeFilter]
|
98
|
+
attr_accessor contains_all: Types::DocumentAttribute
|
99
|
+
attr_accessor contains_any: Types::DocumentAttribute
|
100
|
+
attr_accessor equals_to: Types::DocumentAttribute
|
101
|
+
attr_accessor greater_than: Types::DocumentAttribute
|
102
|
+
attr_accessor greater_than_or_equals: Types::DocumentAttribute
|
103
|
+
attr_accessor less_than: Types::DocumentAttribute
|
104
|
+
attr_accessor less_than_or_equals: Types::DocumentAttribute
|
105
|
+
attr_accessor not_filter: Types::AttributeFilter
|
106
|
+
attr_accessor or_all_filters: ::Array[Types::AttributeFilter]
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class BasicAuthConfiguration
|
111
|
+
attr_accessor role_arn: ::String
|
112
|
+
attr_accessor secret_arn: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class BatchDeleteDocumentRequest
|
117
|
+
attr_accessor application_id: ::String
|
118
|
+
attr_accessor data_source_sync_id: ::String
|
119
|
+
attr_accessor documents: ::Array[Types::DeleteDocument]
|
120
|
+
attr_accessor index_id: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class BatchDeleteDocumentResponse
|
125
|
+
attr_accessor failed_documents: ::Array[Types::FailedDocument]
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class BatchPutDocumentRequest
|
130
|
+
attr_accessor application_id: ::String
|
131
|
+
attr_accessor data_source_sync_id: ::String
|
132
|
+
attr_accessor documents: ::Array[Types::Document]
|
133
|
+
attr_accessor index_id: ::String
|
134
|
+
attr_accessor role_arn: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class BatchPutDocumentResponse
|
139
|
+
attr_accessor failed_documents: ::Array[Types::FailedDocument]
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class BlockedPhrasesConfiguration
|
144
|
+
attr_accessor blocked_phrases: ::Array[::String]
|
145
|
+
attr_accessor system_message_override: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class BlockedPhrasesConfigurationUpdate
|
150
|
+
attr_accessor blocked_phrases_to_create_or_update: ::Array[::String]
|
151
|
+
attr_accessor blocked_phrases_to_delete: ::Array[::String]
|
152
|
+
attr_accessor system_message_override: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class ChatSyncInput
|
157
|
+
attr_accessor action_execution: Types::ActionExecution
|
158
|
+
attr_accessor application_id: ::String
|
159
|
+
attr_accessor attachments: ::Array[Types::AttachmentInput]
|
160
|
+
attr_accessor attribute_filter: Types::AttributeFilter
|
161
|
+
attr_accessor client_token: ::String
|
162
|
+
attr_accessor conversation_id: ::String
|
163
|
+
attr_accessor parent_message_id: ::String
|
164
|
+
attr_accessor user_groups: ::Array[::String]
|
165
|
+
attr_accessor user_id: ::String
|
166
|
+
attr_accessor user_message: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class ChatSyncOutput
|
171
|
+
attr_accessor action_review: Types::ActionReview
|
172
|
+
attr_accessor conversation_id: ::String
|
173
|
+
attr_accessor failed_attachments: ::Array[Types::AttachmentOutput]
|
174
|
+
attr_accessor source_attributions: ::Array[Types::SourceAttribution]
|
175
|
+
attr_accessor system_message: ::String
|
176
|
+
attr_accessor system_message_id: ::String
|
177
|
+
attr_accessor user_message_id: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class ConflictException
|
182
|
+
attr_accessor message: ::String
|
183
|
+
attr_accessor resource_id: ::String
|
184
|
+
attr_accessor resource_type: ::String
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class ContentBlockerRule
|
189
|
+
attr_accessor system_message_override: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class ContentRetrievalRule
|
194
|
+
attr_accessor eligible_data_sources: ::Array[Types::EligibleDataSource]
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class Conversation
|
199
|
+
attr_accessor conversation_id: ::String
|
200
|
+
attr_accessor start_time: ::Time
|
201
|
+
attr_accessor title: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateApplicationRequest
|
206
|
+
attr_accessor attachments_configuration: Types::AttachmentsConfiguration
|
207
|
+
attr_accessor client_token: ::String
|
208
|
+
attr_accessor description: ::String
|
209
|
+
attr_accessor display_name: ::String
|
210
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
211
|
+
attr_accessor role_arn: ::String
|
212
|
+
attr_accessor tags: ::Array[Types::Tag]
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class CreateApplicationResponse
|
217
|
+
attr_accessor application_arn: ::String
|
218
|
+
attr_accessor application_id: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CreateDataSourceRequest
|
223
|
+
attr_accessor application_id: ::String
|
224
|
+
attr_accessor client_token: ::String
|
225
|
+
attr_accessor configuration: untyped
|
226
|
+
attr_accessor description: ::String
|
227
|
+
attr_accessor display_name: ::String
|
228
|
+
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
229
|
+
attr_accessor index_id: ::String
|
230
|
+
attr_accessor role_arn: ::String
|
231
|
+
attr_accessor sync_schedule: ::String
|
232
|
+
attr_accessor tags: ::Array[Types::Tag]
|
233
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CreateDataSourceResponse
|
238
|
+
attr_accessor data_source_arn: ::String
|
239
|
+
attr_accessor data_source_id: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class CreateIndexRequest
|
244
|
+
attr_accessor application_id: ::String
|
245
|
+
attr_accessor capacity_configuration: Types::IndexCapacityConfiguration
|
246
|
+
attr_accessor client_token: ::String
|
247
|
+
attr_accessor description: ::String
|
248
|
+
attr_accessor display_name: ::String
|
249
|
+
attr_accessor tags: ::Array[Types::Tag]
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class CreateIndexResponse
|
254
|
+
attr_accessor index_arn: ::String
|
255
|
+
attr_accessor index_id: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class CreatePluginRequest
|
260
|
+
attr_accessor application_id: ::String
|
261
|
+
attr_accessor auth_configuration: Types::PluginAuthConfiguration
|
262
|
+
attr_accessor client_token: ::String
|
263
|
+
attr_accessor display_name: ::String
|
264
|
+
attr_accessor server_url: ::String
|
265
|
+
attr_accessor tags: ::Array[Types::Tag]
|
266
|
+
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK")
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class CreatePluginResponse
|
271
|
+
attr_accessor plugin_arn: ::String
|
272
|
+
attr_accessor plugin_id: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class CreateRetrieverRequest
|
277
|
+
attr_accessor application_id: ::String
|
278
|
+
attr_accessor client_token: ::String
|
279
|
+
attr_accessor configuration: Types::RetrieverConfiguration
|
280
|
+
attr_accessor display_name: ::String
|
281
|
+
attr_accessor role_arn: ::String
|
282
|
+
attr_accessor tags: ::Array[Types::Tag]
|
283
|
+
attr_accessor type: ("NATIVE_INDEX" | "KENDRA_INDEX")
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class CreateRetrieverResponse
|
288
|
+
attr_accessor retriever_arn: ::String
|
289
|
+
attr_accessor retriever_id: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class CreateUserRequest
|
294
|
+
attr_accessor application_id: ::String
|
295
|
+
attr_accessor client_token: ::String
|
296
|
+
attr_accessor user_aliases: ::Array[Types::UserAlias]
|
297
|
+
attr_accessor user_id: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class CreateUserResponse < Aws::EmptyStructure
|
302
|
+
end
|
303
|
+
|
304
|
+
class CreateWebExperienceRequest
|
305
|
+
attr_accessor application_id: ::String
|
306
|
+
attr_accessor client_token: ::String
|
307
|
+
attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
|
308
|
+
attr_accessor subtitle: ::String
|
309
|
+
attr_accessor tags: ::Array[Types::Tag]
|
310
|
+
attr_accessor title: ::String
|
311
|
+
attr_accessor welcome_message: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class CreateWebExperienceResponse
|
316
|
+
attr_accessor web_experience_arn: ::String
|
317
|
+
attr_accessor web_experience_id: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class DataSource
|
322
|
+
attr_accessor created_at: ::Time
|
323
|
+
attr_accessor data_source_id: ::String
|
324
|
+
attr_accessor display_name: ::String
|
325
|
+
attr_accessor status: ("PENDING_CREATION" | "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
326
|
+
attr_accessor type: ::String
|
327
|
+
attr_accessor updated_at: ::Time
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DataSourceSyncJob
|
332
|
+
attr_accessor data_source_error_code: ::String
|
333
|
+
attr_accessor end_time: ::Time
|
334
|
+
attr_accessor error: Types::ErrorDetail
|
335
|
+
attr_accessor execution_id: ::String
|
336
|
+
attr_accessor metrics: Types::DataSourceSyncJobMetrics
|
337
|
+
attr_accessor start_time: ::Time
|
338
|
+
attr_accessor status: ("FAILED" | "SUCCEEDED" | "SYNCING" | "INCOMPLETE" | "STOPPING" | "ABORTED" | "SYNCING_INDEXING")
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class DataSourceSyncJobMetrics
|
343
|
+
attr_accessor documents_added: ::String
|
344
|
+
attr_accessor documents_deleted: ::String
|
345
|
+
attr_accessor documents_failed: ::String
|
346
|
+
attr_accessor documents_modified: ::String
|
347
|
+
attr_accessor documents_scanned: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class DataSourceVpcConfiguration
|
352
|
+
attr_accessor security_group_ids: ::Array[::String]
|
353
|
+
attr_accessor subnet_ids: ::Array[::String]
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class DateAttributeBoostingConfiguration
|
358
|
+
attr_accessor boosting_duration_in_seconds: ::Integer
|
359
|
+
attr_accessor boosting_level: ("NONE" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH")
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DeleteApplicationRequest
|
364
|
+
attr_accessor application_id: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class DeleteApplicationResponse < Aws::EmptyStructure
|
369
|
+
end
|
370
|
+
|
371
|
+
class DeleteChatControlsConfigurationRequest
|
372
|
+
attr_accessor application_id: ::String
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class DeleteChatControlsConfigurationResponse < Aws::EmptyStructure
|
377
|
+
end
|
378
|
+
|
379
|
+
class DeleteConversationRequest
|
380
|
+
attr_accessor application_id: ::String
|
381
|
+
attr_accessor conversation_id: ::String
|
382
|
+
attr_accessor user_id: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DeleteConversationResponse < Aws::EmptyStructure
|
387
|
+
end
|
388
|
+
|
389
|
+
class DeleteDataSourceRequest
|
390
|
+
attr_accessor application_id: ::String
|
391
|
+
attr_accessor data_source_id: ::String
|
392
|
+
attr_accessor index_id: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class DeleteDataSourceResponse < Aws::EmptyStructure
|
397
|
+
end
|
398
|
+
|
399
|
+
class DeleteDocument
|
400
|
+
attr_accessor document_id: ::String
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class DeleteGroupRequest
|
405
|
+
attr_accessor application_id: ::String
|
406
|
+
attr_accessor data_source_id: ::String
|
407
|
+
attr_accessor group_name: ::String
|
408
|
+
attr_accessor index_id: ::String
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class DeleteGroupResponse < Aws::EmptyStructure
|
413
|
+
end
|
414
|
+
|
415
|
+
class DeleteIndexRequest
|
416
|
+
attr_accessor application_id: ::String
|
417
|
+
attr_accessor index_id: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DeleteIndexResponse < Aws::EmptyStructure
|
422
|
+
end
|
423
|
+
|
424
|
+
class DeletePluginRequest
|
425
|
+
attr_accessor application_id: ::String
|
426
|
+
attr_accessor plugin_id: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class DeletePluginResponse < Aws::EmptyStructure
|
431
|
+
end
|
432
|
+
|
433
|
+
class DeleteRetrieverRequest
|
434
|
+
attr_accessor application_id: ::String
|
435
|
+
attr_accessor retriever_id: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class DeleteRetrieverResponse < Aws::EmptyStructure
|
440
|
+
end
|
441
|
+
|
442
|
+
class DeleteUserRequest
|
443
|
+
attr_accessor application_id: ::String
|
444
|
+
attr_accessor user_id: ::String
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class DeleteUserResponse < Aws::EmptyStructure
|
449
|
+
end
|
450
|
+
|
451
|
+
class DeleteWebExperienceRequest
|
452
|
+
attr_accessor application_id: ::String
|
453
|
+
attr_accessor web_experience_id: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class DeleteWebExperienceResponse < Aws::EmptyStructure
|
458
|
+
end
|
459
|
+
|
460
|
+
class Document
|
461
|
+
attr_accessor access_configuration: Types::AccessConfiguration
|
462
|
+
attr_accessor attributes: ::Array[Types::DocumentAttribute]
|
463
|
+
attr_accessor content: Types::DocumentContent
|
464
|
+
attr_accessor content_type: ("PDF" | "HTML" | "MS_WORD" | "PLAIN_TEXT" | "PPT" | "RTF" | "XML" | "XSLT" | "MS_EXCEL" | "CSV" | "JSON" | "MD")
|
465
|
+
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
466
|
+
attr_accessor id: ::String
|
467
|
+
attr_accessor title: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class DocumentAttribute
|
472
|
+
attr_accessor name: ::String
|
473
|
+
attr_accessor value: Types::DocumentAttributeValue
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class DocumentAttributeBoostingConfiguration
|
478
|
+
attr_accessor date_configuration: Types::DateAttributeBoostingConfiguration
|
479
|
+
attr_accessor number_configuration: Types::NumberAttributeBoostingConfiguration
|
480
|
+
attr_accessor string_configuration: Types::StringAttributeBoostingConfiguration
|
481
|
+
attr_accessor string_list_configuration: Types::StringListAttributeBoostingConfiguration
|
482
|
+
attr_accessor unknown: untyped
|
483
|
+
SENSITIVE: []
|
484
|
+
|
485
|
+
class DateConfiguration < DocumentAttributeBoostingConfiguration
|
486
|
+
end
|
487
|
+
class NumberConfiguration < DocumentAttributeBoostingConfiguration
|
488
|
+
end
|
489
|
+
class StringConfiguration < DocumentAttributeBoostingConfiguration
|
490
|
+
end
|
491
|
+
class StringListConfiguration < DocumentAttributeBoostingConfiguration
|
492
|
+
end
|
493
|
+
class Unknown < DocumentAttributeBoostingConfiguration
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
497
|
+
class DocumentAttributeCondition
|
498
|
+
attr_accessor key: ::String
|
499
|
+
attr_accessor operator: ("GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS" | "EXISTS" | "NOT_EXISTS" | "BEGINS_WITH")
|
500
|
+
attr_accessor value: Types::DocumentAttributeValue
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class DocumentAttributeConfiguration
|
505
|
+
attr_accessor name: ::String
|
506
|
+
attr_accessor search: ("ENABLED" | "DISABLED")
|
507
|
+
attr_accessor type: ("STRING" | "STRING_LIST" | "NUMBER" | "DATE")
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class DocumentAttributeTarget
|
512
|
+
attr_accessor attribute_value_operator: ("DELETE")
|
513
|
+
attr_accessor key: ::String
|
514
|
+
attr_accessor value: Types::DocumentAttributeValue
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class DocumentAttributeValue
|
519
|
+
attr_accessor date_value: ::Time
|
520
|
+
attr_accessor long_value: ::Integer
|
521
|
+
attr_accessor string_list_value: ::Array[::String]
|
522
|
+
attr_accessor string_value: ::String
|
523
|
+
attr_accessor unknown: untyped
|
524
|
+
SENSITIVE: []
|
525
|
+
|
526
|
+
class DateValue < DocumentAttributeValue
|
527
|
+
end
|
528
|
+
class LongValue < DocumentAttributeValue
|
529
|
+
end
|
530
|
+
class StringListValue < DocumentAttributeValue
|
531
|
+
end
|
532
|
+
class StringValue < DocumentAttributeValue
|
533
|
+
end
|
534
|
+
class Unknown < DocumentAttributeValue
|
535
|
+
end
|
536
|
+
end
|
537
|
+
|
538
|
+
class DocumentContent
|
539
|
+
attr_accessor blob: ::String
|
540
|
+
attr_accessor s3: Types::S3
|
541
|
+
attr_accessor unknown: untyped
|
542
|
+
SENSITIVE: []
|
543
|
+
|
544
|
+
class Blob < DocumentContent
|
545
|
+
end
|
546
|
+
class S3 < DocumentContent
|
547
|
+
end
|
548
|
+
class Unknown < DocumentContent
|
549
|
+
end
|
550
|
+
end
|
551
|
+
|
552
|
+
class DocumentDetails
|
553
|
+
attr_accessor created_at: ::Time
|
554
|
+
attr_accessor document_id: ::String
|
555
|
+
attr_accessor error: Types::ErrorDetail
|
556
|
+
attr_accessor status: ("RECEIVED" | "PROCESSING" | "INDEXED" | "UPDATED" | "FAILED" | "DELETING" | "DELETED" | "DOCUMENT_FAILED_TO_INDEX")
|
557
|
+
attr_accessor updated_at: ::Time
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class DocumentEnrichmentConfiguration
|
562
|
+
attr_accessor inline_configurations: ::Array[Types::InlineDocumentEnrichmentConfiguration]
|
563
|
+
attr_accessor post_extraction_hook_configuration: Types::HookConfiguration
|
564
|
+
attr_accessor pre_extraction_hook_configuration: Types::HookConfiguration
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class EligibleDataSource
|
569
|
+
attr_accessor data_source_id: ::String
|
570
|
+
attr_accessor index_id: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class EncryptionConfiguration
|
575
|
+
attr_accessor kms_key_id: ::String
|
576
|
+
SENSITIVE: [:kms_key_id]
|
577
|
+
end
|
578
|
+
|
579
|
+
class ErrorDetail
|
580
|
+
attr_accessor error_code: ("InternalError" | "InvalidRequest" | "ResourceInactive" | "ResourceNotFound")
|
581
|
+
attr_accessor error_message: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class FailedDocument
|
586
|
+
attr_accessor data_source_id: ::String
|
587
|
+
attr_accessor error: Types::ErrorDetail
|
588
|
+
attr_accessor id: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class GetApplicationRequest
|
593
|
+
attr_accessor application_id: ::String
|
594
|
+
SENSITIVE: []
|
595
|
+
end
|
596
|
+
|
597
|
+
class GetApplicationResponse
|
598
|
+
attr_accessor application_arn: ::String
|
599
|
+
attr_accessor application_id: ::String
|
600
|
+
attr_accessor attachments_configuration: Types::AppliedAttachmentsConfiguration
|
601
|
+
attr_accessor created_at: ::Time
|
602
|
+
attr_accessor description: ::String
|
603
|
+
attr_accessor display_name: ::String
|
604
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
605
|
+
attr_accessor error: Types::ErrorDetail
|
606
|
+
attr_accessor role_arn: ::String
|
607
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
608
|
+
attr_accessor updated_at: ::Time
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class GetChatControlsConfigurationRequest
|
613
|
+
attr_accessor application_id: ::String
|
614
|
+
attr_accessor max_results: ::Integer
|
615
|
+
attr_accessor next_token: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class GetChatControlsConfigurationResponse
|
620
|
+
attr_accessor blocked_phrases: Types::BlockedPhrasesConfiguration
|
621
|
+
attr_accessor next_token: ::String
|
622
|
+
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
623
|
+
attr_accessor topic_configurations: ::Array[Types::TopicConfiguration]
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class GetDataSourceRequest
|
628
|
+
attr_accessor application_id: ::String
|
629
|
+
attr_accessor data_source_id: ::String
|
630
|
+
attr_accessor index_id: ::String
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class GetDataSourceResponse
|
635
|
+
attr_accessor application_id: ::String
|
636
|
+
attr_accessor configuration: untyped
|
637
|
+
attr_accessor created_at: ::Time
|
638
|
+
attr_accessor data_source_arn: ::String
|
639
|
+
attr_accessor data_source_id: ::String
|
640
|
+
attr_accessor description: ::String
|
641
|
+
attr_accessor display_name: ::String
|
642
|
+
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
643
|
+
attr_accessor error: Types::ErrorDetail
|
644
|
+
attr_accessor index_id: ::String
|
645
|
+
attr_accessor role_arn: ::String
|
646
|
+
attr_accessor status: ("PENDING_CREATION" | "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
647
|
+
attr_accessor sync_schedule: ::String
|
648
|
+
attr_accessor type: ::String
|
649
|
+
attr_accessor updated_at: ::Time
|
650
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class GetGroupRequest
|
655
|
+
attr_accessor application_id: ::String
|
656
|
+
attr_accessor data_source_id: ::String
|
657
|
+
attr_accessor group_name: ::String
|
658
|
+
attr_accessor index_id: ::String
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class GetGroupResponse
|
663
|
+
attr_accessor status: Types::GroupStatusDetail
|
664
|
+
attr_accessor status_history: ::Array[Types::GroupStatusDetail]
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class GetIndexRequest
|
669
|
+
attr_accessor application_id: ::String
|
670
|
+
attr_accessor index_id: ::String
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class GetIndexResponse
|
675
|
+
attr_accessor application_id: ::String
|
676
|
+
attr_accessor capacity_configuration: Types::IndexCapacityConfiguration
|
677
|
+
attr_accessor created_at: ::Time
|
678
|
+
attr_accessor description: ::String
|
679
|
+
attr_accessor display_name: ::String
|
680
|
+
attr_accessor document_attribute_configurations: ::Array[Types::DocumentAttributeConfiguration]
|
681
|
+
attr_accessor error: Types::ErrorDetail
|
682
|
+
attr_accessor index_arn: ::String
|
683
|
+
attr_accessor index_id: ::String
|
684
|
+
attr_accessor index_statistics: Types::IndexStatistics
|
685
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
686
|
+
attr_accessor updated_at: ::Time
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class GetPluginRequest
|
691
|
+
attr_accessor application_id: ::String
|
692
|
+
attr_accessor plugin_id: ::String
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class GetPluginResponse
|
697
|
+
attr_accessor application_id: ::String
|
698
|
+
attr_accessor auth_configuration: Types::PluginAuthConfiguration
|
699
|
+
attr_accessor created_at: ::Time
|
700
|
+
attr_accessor display_name: ::String
|
701
|
+
attr_accessor plugin_arn: ::String
|
702
|
+
attr_accessor plugin_id: ::String
|
703
|
+
attr_accessor server_url: ::String
|
704
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
705
|
+
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK")
|
706
|
+
attr_accessor updated_at: ::Time
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class GetRetrieverRequest
|
711
|
+
attr_accessor application_id: ::String
|
712
|
+
attr_accessor retriever_id: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class GetRetrieverResponse
|
717
|
+
attr_accessor application_id: ::String
|
718
|
+
attr_accessor configuration: Types::RetrieverConfiguration
|
719
|
+
attr_accessor created_at: ::Time
|
720
|
+
attr_accessor display_name: ::String
|
721
|
+
attr_accessor retriever_arn: ::String
|
722
|
+
attr_accessor retriever_id: ::String
|
723
|
+
attr_accessor role_arn: ::String
|
724
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED")
|
725
|
+
attr_accessor type: ("NATIVE_INDEX" | "KENDRA_INDEX")
|
726
|
+
attr_accessor updated_at: ::Time
|
727
|
+
SENSITIVE: []
|
728
|
+
end
|
729
|
+
|
730
|
+
class GetUserRequest
|
731
|
+
attr_accessor application_id: ::String
|
732
|
+
attr_accessor user_id: ::String
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class GetUserResponse
|
737
|
+
attr_accessor user_aliases: ::Array[Types::UserAlias]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GetWebExperienceRequest
|
742
|
+
attr_accessor application_id: ::String
|
743
|
+
attr_accessor web_experience_id: ::String
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
747
|
+
class GetWebExperienceResponse
|
748
|
+
attr_accessor application_id: ::String
|
749
|
+
attr_accessor authentication_configuration: Types::WebExperienceAuthConfiguration
|
750
|
+
attr_accessor created_at: ::Time
|
751
|
+
attr_accessor default_endpoint: ::String
|
752
|
+
attr_accessor error: Types::ErrorDetail
|
753
|
+
attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
|
754
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "PENDING_AUTH_CONFIG")
|
755
|
+
attr_accessor subtitle: ::String
|
756
|
+
attr_accessor title: ::String
|
757
|
+
attr_accessor updated_at: ::Time
|
758
|
+
attr_accessor web_experience_arn: ::String
|
759
|
+
attr_accessor web_experience_id: ::String
|
760
|
+
attr_accessor welcome_message: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class GroupMembers
|
765
|
+
attr_accessor member_groups: ::Array[Types::MemberGroup]
|
766
|
+
attr_accessor member_users: ::Array[Types::MemberUser]
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class GroupStatusDetail
|
771
|
+
attr_accessor error_detail: Types::ErrorDetail
|
772
|
+
attr_accessor last_updated_at: ::Time
|
773
|
+
attr_accessor status: ("FAILED" | "SUCCEEDED" | "PROCESSING" | "DELETING" | "DELETED")
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class GroupSummary
|
778
|
+
attr_accessor group_name: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class HookConfiguration
|
783
|
+
attr_accessor invocation_condition: Types::DocumentAttributeCondition
|
784
|
+
attr_accessor lambda_arn: ::String
|
785
|
+
attr_accessor role_arn: ::String
|
786
|
+
attr_accessor s3_bucket_name: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class Index
|
791
|
+
attr_accessor created_at: ::Time
|
792
|
+
attr_accessor display_name: ::String
|
793
|
+
attr_accessor index_id: ::String
|
794
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
|
795
|
+
attr_accessor updated_at: ::Time
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class IndexCapacityConfiguration
|
800
|
+
attr_accessor units: ::Integer
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class IndexStatistics
|
805
|
+
attr_accessor text_document_statistics: Types::TextDocumentStatistics
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class InlineDocumentEnrichmentConfiguration
|
810
|
+
attr_accessor condition: Types::DocumentAttributeCondition
|
811
|
+
attr_accessor document_content_operator: ("DELETE")
|
812
|
+
attr_accessor target: Types::DocumentAttributeTarget
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class InternalServerException
|
817
|
+
attr_accessor message: ::String
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class KendraIndexConfiguration
|
822
|
+
attr_accessor index_id: ::String
|
823
|
+
SENSITIVE: []
|
824
|
+
end
|
825
|
+
|
826
|
+
class LicenseNotFoundException
|
827
|
+
attr_accessor message: ::String
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class ListApplicationsRequest
|
832
|
+
attr_accessor max_results: ::Integer
|
833
|
+
attr_accessor next_token: ::String
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class ListApplicationsResponse
|
838
|
+
attr_accessor applications: ::Array[Types::Application]
|
839
|
+
attr_accessor next_token: ::String
|
840
|
+
SENSITIVE: []
|
841
|
+
end
|
842
|
+
|
843
|
+
class ListConversationsRequest
|
844
|
+
attr_accessor application_id: ::String
|
845
|
+
attr_accessor max_results: ::Integer
|
846
|
+
attr_accessor next_token: ::String
|
847
|
+
attr_accessor user_id: ::String
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class ListConversationsResponse
|
852
|
+
attr_accessor conversations: ::Array[Types::Conversation]
|
853
|
+
attr_accessor next_token: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ListDataSourceSyncJobsRequest
|
858
|
+
attr_accessor application_id: ::String
|
859
|
+
attr_accessor data_source_id: ::String
|
860
|
+
attr_accessor end_time: ::Time
|
861
|
+
attr_accessor index_id: ::String
|
862
|
+
attr_accessor max_results: ::Integer
|
863
|
+
attr_accessor next_token: ::String
|
864
|
+
attr_accessor start_time: ::Time
|
865
|
+
attr_accessor status_filter: ("FAILED" | "SUCCEEDED" | "SYNCING" | "INCOMPLETE" | "STOPPING" | "ABORTED" | "SYNCING_INDEXING")
|
866
|
+
SENSITIVE: []
|
867
|
+
end
|
868
|
+
|
869
|
+
class ListDataSourceSyncJobsResponse
|
870
|
+
attr_accessor history: ::Array[Types::DataSourceSyncJob]
|
871
|
+
attr_accessor next_token: ::String
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class ListDataSourcesRequest
|
876
|
+
attr_accessor application_id: ::String
|
877
|
+
attr_accessor index_id: ::String
|
878
|
+
attr_accessor max_results: ::Integer
|
879
|
+
attr_accessor next_token: ::String
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class ListDataSourcesResponse
|
884
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
885
|
+
attr_accessor next_token: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class ListDocumentsRequest
|
890
|
+
attr_accessor application_id: ::String
|
891
|
+
attr_accessor data_source_ids: ::Array[::String]
|
892
|
+
attr_accessor index_id: ::String
|
893
|
+
attr_accessor max_results: ::Integer
|
894
|
+
attr_accessor next_token: ::String
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
898
|
+
class ListDocumentsResponse
|
899
|
+
attr_accessor document_detail_list: ::Array[Types::DocumentDetails]
|
900
|
+
attr_accessor next_token: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class ListGroupsRequest
|
905
|
+
attr_accessor application_id: ::String
|
906
|
+
attr_accessor data_source_id: ::String
|
907
|
+
attr_accessor index_id: ::String
|
908
|
+
attr_accessor max_results: ::Integer
|
909
|
+
attr_accessor next_token: ::String
|
910
|
+
attr_accessor updated_earlier_than: ::Time
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class ListGroupsResponse
|
915
|
+
attr_accessor items: ::Array[Types::GroupSummary]
|
916
|
+
attr_accessor next_token: ::String
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class ListIndicesRequest
|
921
|
+
attr_accessor application_id: ::String
|
922
|
+
attr_accessor max_results: ::Integer
|
923
|
+
attr_accessor next_token: ::String
|
924
|
+
SENSITIVE: []
|
925
|
+
end
|
926
|
+
|
927
|
+
class ListIndicesResponse
|
928
|
+
attr_accessor indices: ::Array[Types::Index]
|
929
|
+
attr_accessor next_token: ::String
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class ListMessagesRequest
|
934
|
+
attr_accessor application_id: ::String
|
935
|
+
attr_accessor conversation_id: ::String
|
936
|
+
attr_accessor max_results: ::Integer
|
937
|
+
attr_accessor next_token: ::String
|
938
|
+
attr_accessor user_id: ::String
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class ListMessagesResponse
|
943
|
+
attr_accessor messages: ::Array[Types::Message]
|
944
|
+
attr_accessor next_token: ::String
|
945
|
+
SENSITIVE: []
|
946
|
+
end
|
947
|
+
|
948
|
+
class ListPluginsRequest
|
949
|
+
attr_accessor application_id: ::String
|
950
|
+
attr_accessor max_results: ::Integer
|
951
|
+
attr_accessor next_token: ::String
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class ListPluginsResponse
|
956
|
+
attr_accessor next_token: ::String
|
957
|
+
attr_accessor plugins: ::Array[Types::Plugin]
|
958
|
+
SENSITIVE: []
|
959
|
+
end
|
960
|
+
|
961
|
+
class ListRetrieversRequest
|
962
|
+
attr_accessor application_id: ::String
|
963
|
+
attr_accessor max_results: ::Integer
|
964
|
+
attr_accessor next_token: ::String
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class ListRetrieversResponse
|
969
|
+
attr_accessor next_token: ::String
|
970
|
+
attr_accessor retrievers: ::Array[Types::Retriever]
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class ListTagsForResourceRequest
|
975
|
+
attr_accessor resource_arn: ::String
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
979
|
+
class ListTagsForResourceResponse
|
980
|
+
attr_accessor tags: ::Array[Types::Tag]
|
981
|
+
SENSITIVE: []
|
982
|
+
end
|
983
|
+
|
984
|
+
class ListWebExperiencesRequest
|
985
|
+
attr_accessor application_id: ::String
|
986
|
+
attr_accessor max_results: ::Integer
|
987
|
+
attr_accessor next_token: ::String
|
988
|
+
SENSITIVE: []
|
989
|
+
end
|
990
|
+
|
991
|
+
class ListWebExperiencesResponse
|
992
|
+
attr_accessor next_token: ::String
|
993
|
+
attr_accessor web_experiences: ::Array[Types::WebExperience]
|
994
|
+
SENSITIVE: []
|
995
|
+
end
|
996
|
+
|
997
|
+
class MemberGroup
|
998
|
+
attr_accessor group_name: ::String
|
999
|
+
attr_accessor type: ("INDEX" | "DATASOURCE")
|
1000
|
+
SENSITIVE: []
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class MemberUser
|
1004
|
+
attr_accessor type: ("INDEX" | "DATASOURCE")
|
1005
|
+
attr_accessor user_id: ::String
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class Message
|
1010
|
+
attr_accessor action_execution: Types::ActionExecution
|
1011
|
+
attr_accessor action_review: Types::ActionReview
|
1012
|
+
attr_accessor attachments: ::Array[Types::AttachmentOutput]
|
1013
|
+
attr_accessor body: ::String
|
1014
|
+
attr_accessor message_id: ::String
|
1015
|
+
attr_accessor source_attribution: ::Array[Types::SourceAttribution]
|
1016
|
+
attr_accessor time: ::Time
|
1017
|
+
attr_accessor type: ("USER" | "SYSTEM")
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class MessageUsefulnessFeedback
|
1022
|
+
attr_accessor comment: ::String
|
1023
|
+
attr_accessor reason: ("NOT_FACTUALLY_CORRECT" | "HARMFUL_OR_UNSAFE" | "INCORRECT_OR_MISSING_SOURCES" | "NOT_HELPFUL" | "FACTUALLY_CORRECT" | "COMPLETE" | "RELEVANT_SOURCES" | "HELPFUL" | "NOT_BASED_ON_DOCUMENTS" | "NOT_COMPLETE" | "NOT_CONCISE" | "OTHER")
|
1024
|
+
attr_accessor submitted_at: ::Time
|
1025
|
+
attr_accessor usefulness: ("USEFUL" | "NOT_USEFUL")
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class NativeIndexConfiguration
|
1030
|
+
attr_accessor boosting_override: ::Hash[::String, Types::DocumentAttributeBoostingConfiguration]
|
1031
|
+
attr_accessor index_id: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class NumberAttributeBoostingConfiguration
|
1036
|
+
attr_accessor boosting_level: ("NONE" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH")
|
1037
|
+
attr_accessor boosting_type: ("PRIORITIZE_LARGER_VALUES" | "PRIORITIZE_SMALLER_VALUES")
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class OAuth2ClientCredentialConfiguration
|
1042
|
+
attr_accessor role_arn: ::String
|
1043
|
+
attr_accessor secret_arn: ::String
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class Plugin
|
1048
|
+
attr_accessor created_at: ::Time
|
1049
|
+
attr_accessor display_name: ::String
|
1050
|
+
attr_accessor plugin_id: ::String
|
1051
|
+
attr_accessor server_url: ::String
|
1052
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
1053
|
+
attr_accessor type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK")
|
1054
|
+
attr_accessor updated_at: ::Time
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class PluginAuthConfiguration
|
1059
|
+
attr_accessor basic_auth_configuration: Types::BasicAuthConfiguration
|
1060
|
+
attr_accessor o_auth_2_client_credential_configuration: Types::OAuth2ClientCredentialConfiguration
|
1061
|
+
attr_accessor unknown: untyped
|
1062
|
+
SENSITIVE: []
|
1063
|
+
|
1064
|
+
class BasicAuthConfiguration < PluginAuthConfiguration
|
1065
|
+
end
|
1066
|
+
class OAuth2ClientCredentialConfiguration < PluginAuthConfiguration
|
1067
|
+
end
|
1068
|
+
class Unknown < PluginAuthConfiguration
|
1069
|
+
end
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class Principal
|
1073
|
+
attr_accessor group: Types::PrincipalGroup
|
1074
|
+
attr_accessor user: Types::PrincipalUser
|
1075
|
+
attr_accessor unknown: untyped
|
1076
|
+
SENSITIVE: []
|
1077
|
+
|
1078
|
+
class Group < Principal
|
1079
|
+
end
|
1080
|
+
class User < Principal
|
1081
|
+
end
|
1082
|
+
class Unknown < Principal
|
1083
|
+
end
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class PrincipalGroup
|
1087
|
+
attr_accessor access: ("ALLOW" | "DENY")
|
1088
|
+
attr_accessor membership_type: ("INDEX" | "DATASOURCE")
|
1089
|
+
attr_accessor name: ::String
|
1090
|
+
SENSITIVE: []
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class PrincipalUser
|
1094
|
+
attr_accessor access: ("ALLOW" | "DENY")
|
1095
|
+
attr_accessor id: ::String
|
1096
|
+
attr_accessor membership_type: ("INDEX" | "DATASOURCE")
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class PutFeedbackRequest
|
1101
|
+
attr_accessor application_id: ::String
|
1102
|
+
attr_accessor conversation_id: ::String
|
1103
|
+
attr_accessor message_copied_at: ::Time
|
1104
|
+
attr_accessor message_id: ::String
|
1105
|
+
attr_accessor message_usefulness: Types::MessageUsefulnessFeedback
|
1106
|
+
attr_accessor user_id: ::String
|
1107
|
+
SENSITIVE: []
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class PutGroupRequest
|
1111
|
+
attr_accessor application_id: ::String
|
1112
|
+
attr_accessor data_source_id: ::String
|
1113
|
+
attr_accessor group_members: Types::GroupMembers
|
1114
|
+
attr_accessor group_name: ::String
|
1115
|
+
attr_accessor index_id: ::String
|
1116
|
+
attr_accessor type: ("INDEX" | "DATASOURCE")
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class PutGroupResponse < Aws::EmptyStructure
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class ResourceNotFoundException
|
1124
|
+
attr_accessor message: ::String
|
1125
|
+
attr_accessor resource_id: ::String
|
1126
|
+
attr_accessor resource_type: ::String
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class Retriever
|
1131
|
+
attr_accessor application_id: ::String
|
1132
|
+
attr_accessor display_name: ::String
|
1133
|
+
attr_accessor retriever_id: ::String
|
1134
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED")
|
1135
|
+
attr_accessor type: ("NATIVE_INDEX" | "KENDRA_INDEX")
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class RetrieverConfiguration
|
1140
|
+
attr_accessor kendra_index_configuration: Types::KendraIndexConfiguration
|
1141
|
+
attr_accessor native_index_configuration: Types::NativeIndexConfiguration
|
1142
|
+
attr_accessor unknown: untyped
|
1143
|
+
SENSITIVE: []
|
1144
|
+
|
1145
|
+
class KendraIndexConfiguration < RetrieverConfiguration
|
1146
|
+
end
|
1147
|
+
class NativeIndexConfiguration < RetrieverConfiguration
|
1148
|
+
end
|
1149
|
+
class Unknown < RetrieverConfiguration
|
1150
|
+
end
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class Rule
|
1154
|
+
attr_accessor excluded_users_and_groups: Types::UsersAndGroups
|
1155
|
+
attr_accessor included_users_and_groups: Types::UsersAndGroups
|
1156
|
+
attr_accessor rule_configuration: Types::RuleConfiguration
|
1157
|
+
attr_accessor rule_type: ("CONTENT_BLOCKER_RULE" | "CONTENT_RETRIEVAL_RULE")
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class RuleConfiguration
|
1162
|
+
attr_accessor content_blocker_rule: Types::ContentBlockerRule
|
1163
|
+
attr_accessor content_retrieval_rule: Types::ContentRetrievalRule
|
1164
|
+
attr_accessor unknown: untyped
|
1165
|
+
SENSITIVE: []
|
1166
|
+
|
1167
|
+
class ContentBlockerRule < RuleConfiguration
|
1168
|
+
end
|
1169
|
+
class ContentRetrievalRule < RuleConfiguration
|
1170
|
+
end
|
1171
|
+
class Unknown < RuleConfiguration
|
1172
|
+
end
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class S3
|
1176
|
+
attr_accessor bucket: ::String
|
1177
|
+
attr_accessor key: ::String
|
1178
|
+
SENSITIVE: []
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
class SamlConfiguration
|
1182
|
+
attr_accessor metadata_xml: ::String
|
1183
|
+
attr_accessor role_arn: ::String
|
1184
|
+
attr_accessor user_group_attribute: ::String
|
1185
|
+
attr_accessor user_id_attribute: ::String
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class ServiceQuotaExceededException
|
1190
|
+
attr_accessor message: ::String
|
1191
|
+
attr_accessor resource_id: ::String
|
1192
|
+
attr_accessor resource_type: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class SourceAttribution
|
1197
|
+
attr_accessor citation_number: ::Integer
|
1198
|
+
attr_accessor snippet: ::String
|
1199
|
+
attr_accessor text_message_segments: ::Array[Types::TextSegment]
|
1200
|
+
attr_accessor title: ::String
|
1201
|
+
attr_accessor updated_at: ::Time
|
1202
|
+
attr_accessor url: ::String
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class StartDataSourceSyncJobRequest
|
1207
|
+
attr_accessor application_id: ::String
|
1208
|
+
attr_accessor data_source_id: ::String
|
1209
|
+
attr_accessor index_id: ::String
|
1210
|
+
SENSITIVE: []
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
class StartDataSourceSyncJobResponse
|
1214
|
+
attr_accessor execution_id: ::String
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class StopDataSourceSyncJobRequest
|
1219
|
+
attr_accessor application_id: ::String
|
1220
|
+
attr_accessor data_source_id: ::String
|
1221
|
+
attr_accessor index_id: ::String
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class StopDataSourceSyncJobResponse < Aws::EmptyStructure
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class StringAttributeBoostingConfiguration
|
1229
|
+
attr_accessor attribute_value_boosting: ::Hash[::String, ("LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH")]
|
1230
|
+
attr_accessor boosting_level: ("NONE" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH")
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class StringListAttributeBoostingConfiguration
|
1235
|
+
attr_accessor boosting_level: ("NONE" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH")
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class Tag
|
1240
|
+
attr_accessor key: ::String
|
1241
|
+
attr_accessor value: ::String
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class TagResourceRequest
|
1246
|
+
attr_accessor resource_arn: ::String
|
1247
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class TextDocumentStatistics
|
1255
|
+
attr_accessor indexed_text_bytes: ::Integer
|
1256
|
+
attr_accessor indexed_text_document_count: ::Integer
|
1257
|
+
SENSITIVE: []
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
class TextSegment
|
1261
|
+
attr_accessor begin_offset: ::Integer
|
1262
|
+
attr_accessor end_offset: ::Integer
|
1263
|
+
SENSITIVE: []
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
class ThrottlingException
|
1267
|
+
attr_accessor message: ::String
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class TopicConfiguration
|
1272
|
+
attr_accessor description: ::String
|
1273
|
+
attr_accessor example_chat_messages: ::Array[::String]
|
1274
|
+
attr_accessor name: ::String
|
1275
|
+
attr_accessor rules: ::Array[Types::Rule]
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class UntagResourceRequest
|
1280
|
+
attr_accessor resource_arn: ::String
|
1281
|
+
attr_accessor tag_keys: ::Array[::String]
|
1282
|
+
SENSITIVE: []
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class UpdateApplicationRequest
|
1289
|
+
attr_accessor application_id: ::String
|
1290
|
+
attr_accessor attachments_configuration: Types::AttachmentsConfiguration
|
1291
|
+
attr_accessor description: ::String
|
1292
|
+
attr_accessor display_name: ::String
|
1293
|
+
attr_accessor role_arn: ::String
|
1294
|
+
SENSITIVE: []
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
class UpdateApplicationResponse < Aws::EmptyStructure
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
class UpdateChatControlsConfigurationRequest
|
1301
|
+
attr_accessor application_id: ::String
|
1302
|
+
attr_accessor blocked_phrases_configuration_update: Types::BlockedPhrasesConfigurationUpdate
|
1303
|
+
attr_accessor client_token: ::String
|
1304
|
+
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
1305
|
+
attr_accessor topic_configurations_to_create_or_update: ::Array[Types::TopicConfiguration]
|
1306
|
+
attr_accessor topic_configurations_to_delete: ::Array[Types::TopicConfiguration]
|
1307
|
+
SENSITIVE: []
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class UpdateChatControlsConfigurationResponse < Aws::EmptyStructure
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class UpdateDataSourceRequest
|
1314
|
+
attr_accessor application_id: ::String
|
1315
|
+
attr_accessor configuration: untyped
|
1316
|
+
attr_accessor data_source_id: ::String
|
1317
|
+
attr_accessor description: ::String
|
1318
|
+
attr_accessor display_name: ::String
|
1319
|
+
attr_accessor document_enrichment_configuration: Types::DocumentEnrichmentConfiguration
|
1320
|
+
attr_accessor index_id: ::String
|
1321
|
+
attr_accessor role_arn: ::String
|
1322
|
+
attr_accessor sync_schedule: ::String
|
1323
|
+
attr_accessor vpc_configuration: Types::DataSourceVpcConfiguration
|
1324
|
+
SENSITIVE: []
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
class UpdateDataSourceResponse < Aws::EmptyStructure
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
class UpdateIndexRequest
|
1331
|
+
attr_accessor application_id: ::String
|
1332
|
+
attr_accessor capacity_configuration: Types::IndexCapacityConfiguration
|
1333
|
+
attr_accessor description: ::String
|
1334
|
+
attr_accessor display_name: ::String
|
1335
|
+
attr_accessor document_attribute_configurations: ::Array[Types::DocumentAttributeConfiguration]
|
1336
|
+
attr_accessor index_id: ::String
|
1337
|
+
SENSITIVE: []
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class UpdateIndexResponse < Aws::EmptyStructure
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
class UpdatePluginRequest
|
1344
|
+
attr_accessor application_id: ::String
|
1345
|
+
attr_accessor auth_configuration: Types::PluginAuthConfiguration
|
1346
|
+
attr_accessor display_name: ::String
|
1347
|
+
attr_accessor plugin_id: ::String
|
1348
|
+
attr_accessor server_url: ::String
|
1349
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class UpdatePluginResponse < Aws::EmptyStructure
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class UpdateRetrieverRequest
|
1357
|
+
attr_accessor application_id: ::String
|
1358
|
+
attr_accessor configuration: Types::RetrieverConfiguration
|
1359
|
+
attr_accessor display_name: ::String
|
1360
|
+
attr_accessor retriever_id: ::String
|
1361
|
+
attr_accessor role_arn: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class UpdateRetrieverResponse < Aws::EmptyStructure
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
class UpdateUserRequest
|
1369
|
+
attr_accessor application_id: ::String
|
1370
|
+
attr_accessor user_aliases_to_delete: ::Array[Types::UserAlias]
|
1371
|
+
attr_accessor user_aliases_to_update: ::Array[Types::UserAlias]
|
1372
|
+
attr_accessor user_id: ::String
|
1373
|
+
SENSITIVE: []
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
class UpdateUserResponse
|
1377
|
+
attr_accessor user_aliases_added: ::Array[Types::UserAlias]
|
1378
|
+
attr_accessor user_aliases_deleted: ::Array[Types::UserAlias]
|
1379
|
+
attr_accessor user_aliases_updated: ::Array[Types::UserAlias]
|
1380
|
+
SENSITIVE: []
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
class UpdateWebExperienceRequest
|
1384
|
+
attr_accessor application_id: ::String
|
1385
|
+
attr_accessor authentication_configuration: Types::WebExperienceAuthConfiguration
|
1386
|
+
attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
|
1387
|
+
attr_accessor subtitle: ::String
|
1388
|
+
attr_accessor title: ::String
|
1389
|
+
attr_accessor web_experience_id: ::String
|
1390
|
+
attr_accessor welcome_message: ::String
|
1391
|
+
SENSITIVE: []
|
1392
|
+
end
|
1393
|
+
|
1394
|
+
class UpdateWebExperienceResponse < Aws::EmptyStructure
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class UserAlias
|
1398
|
+
attr_accessor data_source_id: ::String
|
1399
|
+
attr_accessor index_id: ::String
|
1400
|
+
attr_accessor user_id: ::String
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class UsersAndGroups
|
1405
|
+
attr_accessor user_groups: ::Array[::String]
|
1406
|
+
attr_accessor user_ids: ::Array[::String]
|
1407
|
+
SENSITIVE: []
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class ValidationException
|
1411
|
+
attr_accessor fields: ::Array[Types::ValidationExceptionField]
|
1412
|
+
attr_accessor message: ::String
|
1413
|
+
attr_accessor reason: ("CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "UNKNOWN_OPERATION")
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class ValidationExceptionField
|
1418
|
+
attr_accessor message: ::String
|
1419
|
+
attr_accessor name: ::String
|
1420
|
+
SENSITIVE: []
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
class WebExperience
|
1424
|
+
attr_accessor created_at: ::Time
|
1425
|
+
attr_accessor default_endpoint: ::String
|
1426
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "PENDING_AUTH_CONFIG")
|
1427
|
+
attr_accessor updated_at: ::Time
|
1428
|
+
attr_accessor web_experience_id: ::String
|
1429
|
+
SENSITIVE: []
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
class WebExperienceAuthConfiguration
|
1433
|
+
attr_accessor saml_configuration: Types::SamlConfiguration
|
1434
|
+
attr_accessor unknown: untyped
|
1435
|
+
SENSITIVE: []
|
1436
|
+
|
1437
|
+
class SamlConfiguration < WebExperienceAuthConfiguration
|
1438
|
+
end
|
1439
|
+
class Unknown < WebExperienceAuthConfiguration
|
1440
|
+
end
|
1441
|
+
end
|
1442
|
+
end
|
1443
|
+
end
|