aws-sdk-lexmodelbuildingservice 1.68.0 → 1.69.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,981 @@
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::LexModelBuildingService
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class BadRequestException
17
+ attr_accessor message: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class BotAliasMetadata
22
+ attr_accessor name: ::String
23
+ attr_accessor description: ::String
24
+ attr_accessor bot_version: ::String
25
+ attr_accessor bot_name: ::String
26
+ attr_accessor last_updated_date: ::Time
27
+ attr_accessor created_date: ::Time
28
+ attr_accessor checksum: ::String
29
+ attr_accessor conversation_logs: Types::ConversationLogsResponse
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class BotChannelAssociation
34
+ attr_accessor name: ::String
35
+ attr_accessor description: ::String
36
+ attr_accessor bot_alias: ::String
37
+ attr_accessor bot_name: ::String
38
+ attr_accessor created_date: ::Time
39
+ attr_accessor type: ("Facebook" | "Slack" | "Twilio-Sms" | "Kik")
40
+ attr_accessor bot_configuration: ::Hash[::String, ::String]
41
+ attr_accessor status: ("IN_PROGRESS" | "CREATED" | "FAILED")
42
+ attr_accessor failure_reason: ::String
43
+ SENSITIVE: [:bot_configuration]
44
+ end
45
+
46
+ class BotMetadata
47
+ attr_accessor name: ::String
48
+ attr_accessor description: ::String
49
+ attr_accessor status: ("BUILDING" | "READY" | "READY_BASIC_TESTING" | "FAILED" | "NOT_BUILT")
50
+ attr_accessor last_updated_date: ::Time
51
+ attr_accessor created_date: ::Time
52
+ attr_accessor version: ::String
53
+ SENSITIVE: []
54
+ end
55
+
56
+ class BuiltinIntentMetadata
57
+ attr_accessor signature: ::String
58
+ attr_accessor supported_locales: ::Array[("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")]
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class BuiltinIntentSlot
63
+ attr_accessor name: ::String
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class BuiltinSlotTypeMetadata
68
+ attr_accessor signature: ::String
69
+ attr_accessor supported_locales: ::Array[("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")]
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class CodeHook
74
+ attr_accessor uri: ::String
75
+ attr_accessor message_version: ::String
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class ConflictException
80
+ attr_accessor message: ::String
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class ConversationLogsRequest
85
+ attr_accessor log_settings: ::Array[Types::LogSettingsRequest]
86
+ attr_accessor iam_role_arn: ::String
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class ConversationLogsResponse
91
+ attr_accessor log_settings: ::Array[Types::LogSettingsResponse]
92
+ attr_accessor iam_role_arn: ::String
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class CreateBotVersionRequest
97
+ attr_accessor name: ::String
98
+ attr_accessor checksum: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class CreateBotVersionResponse
103
+ attr_accessor name: ::String
104
+ attr_accessor description: ::String
105
+ attr_accessor intents: ::Array[Types::Intent]
106
+ attr_accessor clarification_prompt: Types::Prompt
107
+ attr_accessor abort_statement: Types::Statement
108
+ attr_accessor status: ("BUILDING" | "READY" | "READY_BASIC_TESTING" | "FAILED" | "NOT_BUILT")
109
+ attr_accessor failure_reason: ::String
110
+ attr_accessor last_updated_date: ::Time
111
+ attr_accessor created_date: ::Time
112
+ attr_accessor idle_session_ttl_in_seconds: ::Integer
113
+ attr_accessor voice_id: ::String
114
+ attr_accessor checksum: ::String
115
+ attr_accessor version: ::String
116
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
117
+ attr_accessor child_directed: bool
118
+ attr_accessor enable_model_improvements: bool
119
+ attr_accessor detect_sentiment: bool
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class CreateIntentVersionRequest
124
+ attr_accessor name: ::String
125
+ attr_accessor checksum: ::String
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class CreateIntentVersionResponse
130
+ attr_accessor name: ::String
131
+ attr_accessor description: ::String
132
+ attr_accessor slots: ::Array[Types::Slot]
133
+ attr_accessor sample_utterances: ::Array[::String]
134
+ attr_accessor confirmation_prompt: Types::Prompt
135
+ attr_accessor rejection_statement: Types::Statement
136
+ attr_accessor follow_up_prompt: Types::FollowUpPrompt
137
+ attr_accessor conclusion_statement: Types::Statement
138
+ attr_accessor dialog_code_hook: Types::CodeHook
139
+ attr_accessor fulfillment_activity: Types::FulfillmentActivity
140
+ attr_accessor parent_intent_signature: ::String
141
+ attr_accessor last_updated_date: ::Time
142
+ attr_accessor created_date: ::Time
143
+ attr_accessor version: ::String
144
+ attr_accessor checksum: ::String
145
+ attr_accessor kendra_configuration: Types::KendraConfiguration
146
+ attr_accessor input_contexts: ::Array[Types::InputContext]
147
+ attr_accessor output_contexts: ::Array[Types::OutputContext]
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class CreateSlotTypeVersionRequest
152
+ attr_accessor name: ::String
153
+ attr_accessor checksum: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class CreateSlotTypeVersionResponse
158
+ attr_accessor name: ::String
159
+ attr_accessor description: ::String
160
+ attr_accessor enumeration_values: ::Array[Types::EnumerationValue]
161
+ attr_accessor last_updated_date: ::Time
162
+ attr_accessor created_date: ::Time
163
+ attr_accessor version: ::String
164
+ attr_accessor checksum: ::String
165
+ attr_accessor value_selection_strategy: ("ORIGINAL_VALUE" | "TOP_RESOLUTION")
166
+ attr_accessor parent_slot_type_signature: ::String
167
+ attr_accessor slot_type_configurations: ::Array[Types::SlotTypeConfiguration]
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class DeleteBotAliasRequest
172
+ attr_accessor name: ::String
173
+ attr_accessor bot_name: ::String
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class DeleteBotChannelAssociationRequest
178
+ attr_accessor name: ::String
179
+ attr_accessor bot_name: ::String
180
+ attr_accessor bot_alias: ::String
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class DeleteBotRequest
185
+ attr_accessor name: ::String
186
+ SENSITIVE: []
187
+ end
188
+
189
+ class DeleteBotVersionRequest
190
+ attr_accessor name: ::String
191
+ attr_accessor version: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class DeleteIntentRequest
196
+ attr_accessor name: ::String
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class DeleteIntentVersionRequest
201
+ attr_accessor name: ::String
202
+ attr_accessor version: ::String
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class DeleteSlotTypeRequest
207
+ attr_accessor name: ::String
208
+ SENSITIVE: []
209
+ end
210
+
211
+ class DeleteSlotTypeVersionRequest
212
+ attr_accessor name: ::String
213
+ attr_accessor version: ::String
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class DeleteUtterancesRequest
218
+ attr_accessor bot_name: ::String
219
+ attr_accessor user_id: ::String
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class EnumerationValue
224
+ attr_accessor value: ::String
225
+ attr_accessor synonyms: ::Array[::String]
226
+ SENSITIVE: []
227
+ end
228
+
229
+ class FollowUpPrompt
230
+ attr_accessor prompt: Types::Prompt
231
+ attr_accessor rejection_statement: Types::Statement
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class FulfillmentActivity
236
+ attr_accessor type: ("ReturnIntent" | "CodeHook")
237
+ attr_accessor code_hook: Types::CodeHook
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class GetBotAliasRequest
242
+ attr_accessor name: ::String
243
+ attr_accessor bot_name: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class GetBotAliasResponse
248
+ attr_accessor name: ::String
249
+ attr_accessor description: ::String
250
+ attr_accessor bot_version: ::String
251
+ attr_accessor bot_name: ::String
252
+ attr_accessor last_updated_date: ::Time
253
+ attr_accessor created_date: ::Time
254
+ attr_accessor checksum: ::String
255
+ attr_accessor conversation_logs: Types::ConversationLogsResponse
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class GetBotAliasesRequest
260
+ attr_accessor bot_name: ::String
261
+ attr_accessor next_token: ::String
262
+ attr_accessor max_results: ::Integer
263
+ attr_accessor name_contains: ::String
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class GetBotAliasesResponse
268
+ attr_accessor bot_aliases: ::Array[Types::BotAliasMetadata]
269
+ attr_accessor next_token: ::String
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class GetBotChannelAssociationRequest
274
+ attr_accessor name: ::String
275
+ attr_accessor bot_name: ::String
276
+ attr_accessor bot_alias: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class GetBotChannelAssociationResponse
281
+ attr_accessor name: ::String
282
+ attr_accessor description: ::String
283
+ attr_accessor bot_alias: ::String
284
+ attr_accessor bot_name: ::String
285
+ attr_accessor created_date: ::Time
286
+ attr_accessor type: ("Facebook" | "Slack" | "Twilio-Sms" | "Kik")
287
+ attr_accessor bot_configuration: ::Hash[::String, ::String]
288
+ attr_accessor status: ("IN_PROGRESS" | "CREATED" | "FAILED")
289
+ attr_accessor failure_reason: ::String
290
+ SENSITIVE: [:bot_configuration]
291
+ end
292
+
293
+ class GetBotChannelAssociationsRequest
294
+ attr_accessor bot_name: ::String
295
+ attr_accessor bot_alias: ::String
296
+ attr_accessor next_token: ::String
297
+ attr_accessor max_results: ::Integer
298
+ attr_accessor name_contains: ::String
299
+ SENSITIVE: []
300
+ end
301
+
302
+ class GetBotChannelAssociationsResponse
303
+ attr_accessor bot_channel_associations: ::Array[Types::BotChannelAssociation]
304
+ attr_accessor next_token: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class GetBotRequest
309
+ attr_accessor name: ::String
310
+ attr_accessor version_or_alias: ::String
311
+ SENSITIVE: []
312
+ end
313
+
314
+ class GetBotResponse
315
+ attr_accessor name: ::String
316
+ attr_accessor description: ::String
317
+ attr_accessor intents: ::Array[Types::Intent]
318
+ attr_accessor enable_model_improvements: bool
319
+ attr_accessor nlu_intent_confidence_threshold: ::Float
320
+ attr_accessor clarification_prompt: Types::Prompt
321
+ attr_accessor abort_statement: Types::Statement
322
+ attr_accessor status: ("BUILDING" | "READY" | "READY_BASIC_TESTING" | "FAILED" | "NOT_BUILT")
323
+ attr_accessor failure_reason: ::String
324
+ attr_accessor last_updated_date: ::Time
325
+ attr_accessor created_date: ::Time
326
+ attr_accessor idle_session_ttl_in_seconds: ::Integer
327
+ attr_accessor voice_id: ::String
328
+ attr_accessor checksum: ::String
329
+ attr_accessor version: ::String
330
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
331
+ attr_accessor child_directed: bool
332
+ attr_accessor detect_sentiment: bool
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class GetBotVersionsRequest
337
+ attr_accessor name: ::String
338
+ attr_accessor next_token: ::String
339
+ attr_accessor max_results: ::Integer
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class GetBotVersionsResponse
344
+ attr_accessor bots: ::Array[Types::BotMetadata]
345
+ attr_accessor next_token: ::String
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class GetBotsRequest
350
+ attr_accessor next_token: ::String
351
+ attr_accessor max_results: ::Integer
352
+ attr_accessor name_contains: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class GetBotsResponse
357
+ attr_accessor bots: ::Array[Types::BotMetadata]
358
+ attr_accessor next_token: ::String
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class GetBuiltinIntentRequest
363
+ attr_accessor signature: ::String
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class GetBuiltinIntentResponse
368
+ attr_accessor signature: ::String
369
+ attr_accessor supported_locales: ::Array[("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")]
370
+ attr_accessor slots: ::Array[Types::BuiltinIntentSlot]
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class GetBuiltinIntentsRequest
375
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
376
+ attr_accessor signature_contains: ::String
377
+ attr_accessor next_token: ::String
378
+ attr_accessor max_results: ::Integer
379
+ SENSITIVE: []
380
+ end
381
+
382
+ class GetBuiltinIntentsResponse
383
+ attr_accessor intents: ::Array[Types::BuiltinIntentMetadata]
384
+ attr_accessor next_token: ::String
385
+ SENSITIVE: []
386
+ end
387
+
388
+ class GetBuiltinSlotTypesRequest
389
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
390
+ attr_accessor signature_contains: ::String
391
+ attr_accessor next_token: ::String
392
+ attr_accessor max_results: ::Integer
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class GetBuiltinSlotTypesResponse
397
+ attr_accessor slot_types: ::Array[Types::BuiltinSlotTypeMetadata]
398
+ attr_accessor next_token: ::String
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class GetExportRequest
403
+ attr_accessor name: ::String
404
+ attr_accessor version: ::String
405
+ attr_accessor resource_type: ("BOT" | "INTENT" | "SLOT_TYPE")
406
+ attr_accessor export_type: ("ALEXA_SKILLS_KIT" | "LEX")
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class GetExportResponse
411
+ attr_accessor name: ::String
412
+ attr_accessor version: ::String
413
+ attr_accessor resource_type: ("BOT" | "INTENT" | "SLOT_TYPE")
414
+ attr_accessor export_type: ("ALEXA_SKILLS_KIT" | "LEX")
415
+ attr_accessor export_status: ("IN_PROGRESS" | "READY" | "FAILED")
416
+ attr_accessor failure_reason: ::String
417
+ attr_accessor url: ::String
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class GetImportRequest
422
+ attr_accessor import_id: ::String
423
+ SENSITIVE: []
424
+ end
425
+
426
+ class GetImportResponse
427
+ attr_accessor name: ::String
428
+ attr_accessor resource_type: ("BOT" | "INTENT" | "SLOT_TYPE")
429
+ attr_accessor merge_strategy: ("OVERWRITE_LATEST" | "FAIL_ON_CONFLICT")
430
+ attr_accessor import_id: ::String
431
+ attr_accessor import_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
432
+ attr_accessor failure_reason: ::Array[::String]
433
+ attr_accessor created_date: ::Time
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class GetIntentRequest
438
+ attr_accessor name: ::String
439
+ attr_accessor version: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class GetIntentResponse
444
+ attr_accessor name: ::String
445
+ attr_accessor description: ::String
446
+ attr_accessor slots: ::Array[Types::Slot]
447
+ attr_accessor sample_utterances: ::Array[::String]
448
+ attr_accessor confirmation_prompt: Types::Prompt
449
+ attr_accessor rejection_statement: Types::Statement
450
+ attr_accessor follow_up_prompt: Types::FollowUpPrompt
451
+ attr_accessor conclusion_statement: Types::Statement
452
+ attr_accessor dialog_code_hook: Types::CodeHook
453
+ attr_accessor fulfillment_activity: Types::FulfillmentActivity
454
+ attr_accessor parent_intent_signature: ::String
455
+ attr_accessor last_updated_date: ::Time
456
+ attr_accessor created_date: ::Time
457
+ attr_accessor version: ::String
458
+ attr_accessor checksum: ::String
459
+ attr_accessor kendra_configuration: Types::KendraConfiguration
460
+ attr_accessor input_contexts: ::Array[Types::InputContext]
461
+ attr_accessor output_contexts: ::Array[Types::OutputContext]
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class GetIntentVersionsRequest
466
+ attr_accessor name: ::String
467
+ attr_accessor next_token: ::String
468
+ attr_accessor max_results: ::Integer
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class GetIntentVersionsResponse
473
+ attr_accessor intents: ::Array[Types::IntentMetadata]
474
+ attr_accessor next_token: ::String
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class GetIntentsRequest
479
+ attr_accessor next_token: ::String
480
+ attr_accessor max_results: ::Integer
481
+ attr_accessor name_contains: ::String
482
+ SENSITIVE: []
483
+ end
484
+
485
+ class GetIntentsResponse
486
+ attr_accessor intents: ::Array[Types::IntentMetadata]
487
+ attr_accessor next_token: ::String
488
+ SENSITIVE: []
489
+ end
490
+
491
+ class GetMigrationRequest
492
+ attr_accessor migration_id: ::String
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class GetMigrationResponse
497
+ attr_accessor migration_id: ::String
498
+ attr_accessor v1_bot_name: ::String
499
+ attr_accessor v1_bot_version: ::String
500
+ attr_accessor v1_bot_locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
501
+ attr_accessor v2_bot_id: ::String
502
+ attr_accessor v2_bot_role: ::String
503
+ attr_accessor migration_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
504
+ attr_accessor migration_strategy: ("CREATE_NEW" | "UPDATE_EXISTING")
505
+ attr_accessor migration_timestamp: ::Time
506
+ attr_accessor alerts: ::Array[Types::MigrationAlert]
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class GetMigrationsRequest
511
+ attr_accessor sort_by_attribute: ("V1_BOT_NAME" | "MIGRATION_DATE_TIME")
512
+ attr_accessor sort_by_order: ("ASCENDING" | "DESCENDING")
513
+ attr_accessor v1_bot_name_contains: ::String
514
+ attr_accessor migration_status_equals: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
515
+ attr_accessor max_results: ::Integer
516
+ attr_accessor next_token: ::String
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class GetMigrationsResponse
521
+ attr_accessor migration_summaries: ::Array[Types::MigrationSummary]
522
+ attr_accessor next_token: ::String
523
+ SENSITIVE: []
524
+ end
525
+
526
+ class GetSlotTypeRequest
527
+ attr_accessor name: ::String
528
+ attr_accessor version: ::String
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class GetSlotTypeResponse
533
+ attr_accessor name: ::String
534
+ attr_accessor description: ::String
535
+ attr_accessor enumeration_values: ::Array[Types::EnumerationValue]
536
+ attr_accessor last_updated_date: ::Time
537
+ attr_accessor created_date: ::Time
538
+ attr_accessor version: ::String
539
+ attr_accessor checksum: ::String
540
+ attr_accessor value_selection_strategy: ("ORIGINAL_VALUE" | "TOP_RESOLUTION")
541
+ attr_accessor parent_slot_type_signature: ::String
542
+ attr_accessor slot_type_configurations: ::Array[Types::SlotTypeConfiguration]
543
+ SENSITIVE: []
544
+ end
545
+
546
+ class GetSlotTypeVersionsRequest
547
+ attr_accessor name: ::String
548
+ attr_accessor next_token: ::String
549
+ attr_accessor max_results: ::Integer
550
+ SENSITIVE: []
551
+ end
552
+
553
+ class GetSlotTypeVersionsResponse
554
+ attr_accessor slot_types: ::Array[Types::SlotTypeMetadata]
555
+ attr_accessor next_token: ::String
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class GetSlotTypesRequest
560
+ attr_accessor next_token: ::String
561
+ attr_accessor max_results: ::Integer
562
+ attr_accessor name_contains: ::String
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class GetSlotTypesResponse
567
+ attr_accessor slot_types: ::Array[Types::SlotTypeMetadata]
568
+ attr_accessor next_token: ::String
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class GetUtterancesViewRequest
573
+ attr_accessor bot_name: ::String
574
+ attr_accessor bot_versions: ::Array[::String]
575
+ attr_accessor status_type: ("Detected" | "Missed")
576
+ SENSITIVE: []
577
+ end
578
+
579
+ class GetUtterancesViewResponse
580
+ attr_accessor bot_name: ::String
581
+ attr_accessor utterances: ::Array[Types::UtteranceList]
582
+ SENSITIVE: []
583
+ end
584
+
585
+ class InputContext
586
+ attr_accessor name: ::String
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class Intent
591
+ attr_accessor intent_name: ::String
592
+ attr_accessor intent_version: ::String
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class IntentMetadata
597
+ attr_accessor name: ::String
598
+ attr_accessor description: ::String
599
+ attr_accessor last_updated_date: ::Time
600
+ attr_accessor created_date: ::Time
601
+ attr_accessor version: ::String
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class InternalFailureException
606
+ attr_accessor message: ::String
607
+ SENSITIVE: []
608
+ end
609
+
610
+ class KendraConfiguration
611
+ attr_accessor kendra_index: ::String
612
+ attr_accessor query_filter_string: ::String
613
+ attr_accessor role: ::String
614
+ SENSITIVE: []
615
+ end
616
+
617
+ class LimitExceededException
618
+ attr_accessor retry_after_seconds: ::String
619
+ attr_accessor message: ::String
620
+ SENSITIVE: []
621
+ end
622
+
623
+ class ListTagsForResourceRequest
624
+ attr_accessor resource_arn: ::String
625
+ SENSITIVE: []
626
+ end
627
+
628
+ class ListTagsForResourceResponse
629
+ attr_accessor tags: ::Array[Types::Tag]
630
+ SENSITIVE: []
631
+ end
632
+
633
+ class LogSettingsRequest
634
+ attr_accessor log_type: ("AUDIO" | "TEXT")
635
+ attr_accessor destination: ("CLOUDWATCH_LOGS" | "S3")
636
+ attr_accessor kms_key_arn: ::String
637
+ attr_accessor resource_arn: ::String
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class LogSettingsResponse
642
+ attr_accessor log_type: ("AUDIO" | "TEXT")
643
+ attr_accessor destination: ("CLOUDWATCH_LOGS" | "S3")
644
+ attr_accessor kms_key_arn: ::String
645
+ attr_accessor resource_arn: ::String
646
+ attr_accessor resource_prefix: ::String
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class Message
651
+ attr_accessor content_type: ("PlainText" | "SSML" | "CustomPayload")
652
+ attr_accessor content: ::String
653
+ attr_accessor group_number: ::Integer
654
+ SENSITIVE: []
655
+ end
656
+
657
+ class MigrationAlert
658
+ attr_accessor type: ("ERROR" | "WARN")
659
+ attr_accessor message: ::String
660
+ attr_accessor details: ::Array[::String]
661
+ attr_accessor reference_urls: ::Array[::String]
662
+ SENSITIVE: []
663
+ end
664
+
665
+ class MigrationSummary
666
+ attr_accessor migration_id: ::String
667
+ attr_accessor v1_bot_name: ::String
668
+ attr_accessor v1_bot_version: ::String
669
+ attr_accessor v1_bot_locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
670
+ attr_accessor v2_bot_id: ::String
671
+ attr_accessor v2_bot_role: ::String
672
+ attr_accessor migration_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
673
+ attr_accessor migration_strategy: ("CREATE_NEW" | "UPDATE_EXISTING")
674
+ attr_accessor migration_timestamp: ::Time
675
+ SENSITIVE: []
676
+ end
677
+
678
+ class NotFoundException
679
+ attr_accessor message: ::String
680
+ SENSITIVE: []
681
+ end
682
+
683
+ class OutputContext
684
+ attr_accessor name: ::String
685
+ attr_accessor time_to_live_in_seconds: ::Integer
686
+ attr_accessor turns_to_live: ::Integer
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class PreconditionFailedException
691
+ attr_accessor message: ::String
692
+ SENSITIVE: []
693
+ end
694
+
695
+ class Prompt
696
+ attr_accessor messages: ::Array[Types::Message]
697
+ attr_accessor max_attempts: ::Integer
698
+ attr_accessor response_card: ::String
699
+ SENSITIVE: []
700
+ end
701
+
702
+ class PutBotAliasRequest
703
+ attr_accessor name: ::String
704
+ attr_accessor description: ::String
705
+ attr_accessor bot_version: ::String
706
+ attr_accessor bot_name: ::String
707
+ attr_accessor checksum: ::String
708
+ attr_accessor conversation_logs: Types::ConversationLogsRequest
709
+ attr_accessor tags: ::Array[Types::Tag]
710
+ SENSITIVE: []
711
+ end
712
+
713
+ class PutBotAliasResponse
714
+ attr_accessor name: ::String
715
+ attr_accessor description: ::String
716
+ attr_accessor bot_version: ::String
717
+ attr_accessor bot_name: ::String
718
+ attr_accessor last_updated_date: ::Time
719
+ attr_accessor created_date: ::Time
720
+ attr_accessor checksum: ::String
721
+ attr_accessor conversation_logs: Types::ConversationLogsResponse
722
+ attr_accessor tags: ::Array[Types::Tag]
723
+ SENSITIVE: []
724
+ end
725
+
726
+ class PutBotRequest
727
+ attr_accessor name: ::String
728
+ attr_accessor description: ::String
729
+ attr_accessor intents: ::Array[Types::Intent]
730
+ attr_accessor enable_model_improvements: bool
731
+ attr_accessor nlu_intent_confidence_threshold: ::Float
732
+ attr_accessor clarification_prompt: Types::Prompt
733
+ attr_accessor abort_statement: Types::Statement
734
+ attr_accessor idle_session_ttl_in_seconds: ::Integer
735
+ attr_accessor voice_id: ::String
736
+ attr_accessor checksum: ::String
737
+ attr_accessor process_behavior: ("SAVE" | "BUILD")
738
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
739
+ attr_accessor child_directed: bool
740
+ attr_accessor detect_sentiment: bool
741
+ attr_accessor create_version: bool
742
+ attr_accessor tags: ::Array[Types::Tag]
743
+ SENSITIVE: []
744
+ end
745
+
746
+ class PutBotResponse
747
+ attr_accessor name: ::String
748
+ attr_accessor description: ::String
749
+ attr_accessor intents: ::Array[Types::Intent]
750
+ attr_accessor enable_model_improvements: bool
751
+ attr_accessor nlu_intent_confidence_threshold: ::Float
752
+ attr_accessor clarification_prompt: Types::Prompt
753
+ attr_accessor abort_statement: Types::Statement
754
+ attr_accessor status: ("BUILDING" | "READY" | "READY_BASIC_TESTING" | "FAILED" | "NOT_BUILT")
755
+ attr_accessor failure_reason: ::String
756
+ attr_accessor last_updated_date: ::Time
757
+ attr_accessor created_date: ::Time
758
+ attr_accessor idle_session_ttl_in_seconds: ::Integer
759
+ attr_accessor voice_id: ::String
760
+ attr_accessor checksum: ::String
761
+ attr_accessor version: ::String
762
+ attr_accessor locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
763
+ attr_accessor child_directed: bool
764
+ attr_accessor create_version: bool
765
+ attr_accessor detect_sentiment: bool
766
+ attr_accessor tags: ::Array[Types::Tag]
767
+ SENSITIVE: []
768
+ end
769
+
770
+ class PutIntentRequest
771
+ attr_accessor name: ::String
772
+ attr_accessor description: ::String
773
+ attr_accessor slots: ::Array[Types::Slot]
774
+ attr_accessor sample_utterances: ::Array[::String]
775
+ attr_accessor confirmation_prompt: Types::Prompt
776
+ attr_accessor rejection_statement: Types::Statement
777
+ attr_accessor follow_up_prompt: Types::FollowUpPrompt
778
+ attr_accessor conclusion_statement: Types::Statement
779
+ attr_accessor dialog_code_hook: Types::CodeHook
780
+ attr_accessor fulfillment_activity: Types::FulfillmentActivity
781
+ attr_accessor parent_intent_signature: ::String
782
+ attr_accessor checksum: ::String
783
+ attr_accessor create_version: bool
784
+ attr_accessor kendra_configuration: Types::KendraConfiguration
785
+ attr_accessor input_contexts: ::Array[Types::InputContext]
786
+ attr_accessor output_contexts: ::Array[Types::OutputContext]
787
+ SENSITIVE: []
788
+ end
789
+
790
+ class PutIntentResponse
791
+ attr_accessor name: ::String
792
+ attr_accessor description: ::String
793
+ attr_accessor slots: ::Array[Types::Slot]
794
+ attr_accessor sample_utterances: ::Array[::String]
795
+ attr_accessor confirmation_prompt: Types::Prompt
796
+ attr_accessor rejection_statement: Types::Statement
797
+ attr_accessor follow_up_prompt: Types::FollowUpPrompt
798
+ attr_accessor conclusion_statement: Types::Statement
799
+ attr_accessor dialog_code_hook: Types::CodeHook
800
+ attr_accessor fulfillment_activity: Types::FulfillmentActivity
801
+ attr_accessor parent_intent_signature: ::String
802
+ attr_accessor last_updated_date: ::Time
803
+ attr_accessor created_date: ::Time
804
+ attr_accessor version: ::String
805
+ attr_accessor checksum: ::String
806
+ attr_accessor create_version: bool
807
+ attr_accessor kendra_configuration: Types::KendraConfiguration
808
+ attr_accessor input_contexts: ::Array[Types::InputContext]
809
+ attr_accessor output_contexts: ::Array[Types::OutputContext]
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class PutSlotTypeRequest
814
+ attr_accessor name: ::String
815
+ attr_accessor description: ::String
816
+ attr_accessor enumeration_values: ::Array[Types::EnumerationValue]
817
+ attr_accessor checksum: ::String
818
+ attr_accessor value_selection_strategy: ("ORIGINAL_VALUE" | "TOP_RESOLUTION")
819
+ attr_accessor create_version: bool
820
+ attr_accessor parent_slot_type_signature: ::String
821
+ attr_accessor slot_type_configurations: ::Array[Types::SlotTypeConfiguration]
822
+ SENSITIVE: []
823
+ end
824
+
825
+ class PutSlotTypeResponse
826
+ attr_accessor name: ::String
827
+ attr_accessor description: ::String
828
+ attr_accessor enumeration_values: ::Array[Types::EnumerationValue]
829
+ attr_accessor last_updated_date: ::Time
830
+ attr_accessor created_date: ::Time
831
+ attr_accessor version: ::String
832
+ attr_accessor checksum: ::String
833
+ attr_accessor value_selection_strategy: ("ORIGINAL_VALUE" | "TOP_RESOLUTION")
834
+ attr_accessor create_version: bool
835
+ attr_accessor parent_slot_type_signature: ::String
836
+ attr_accessor slot_type_configurations: ::Array[Types::SlotTypeConfiguration]
837
+ SENSITIVE: []
838
+ end
839
+
840
+ class ResourceInUseException
841
+ attr_accessor reference_type: ("Intent" | "Bot" | "BotAlias" | "BotChannel")
842
+ attr_accessor example_reference: Types::ResourceReference
843
+ SENSITIVE: []
844
+ end
845
+
846
+ class ResourceReference
847
+ attr_accessor name: ::String
848
+ attr_accessor version: ::String
849
+ SENSITIVE: []
850
+ end
851
+
852
+ class Slot
853
+ attr_accessor name: ::String
854
+ attr_accessor description: ::String
855
+ attr_accessor slot_constraint: ("Required" | "Optional")
856
+ attr_accessor slot_type: ::String
857
+ attr_accessor slot_type_version: ::String
858
+ attr_accessor value_elicitation_prompt: Types::Prompt
859
+ attr_accessor priority: ::Integer
860
+ attr_accessor sample_utterances: ::Array[::String]
861
+ attr_accessor response_card: ::String
862
+ attr_accessor obfuscation_setting: ("NONE" | "DEFAULT_OBFUSCATION")
863
+ attr_accessor default_value_spec: Types::SlotDefaultValueSpec
864
+ SENSITIVE: []
865
+ end
866
+
867
+ class SlotDefaultValue
868
+ attr_accessor default_value: ::String
869
+ SENSITIVE: []
870
+ end
871
+
872
+ class SlotDefaultValueSpec
873
+ attr_accessor default_value_list: ::Array[Types::SlotDefaultValue]
874
+ SENSITIVE: []
875
+ end
876
+
877
+ class SlotTypeConfiguration
878
+ attr_accessor regex_configuration: Types::SlotTypeRegexConfiguration
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class SlotTypeMetadata
883
+ attr_accessor name: ::String
884
+ attr_accessor description: ::String
885
+ attr_accessor last_updated_date: ::Time
886
+ attr_accessor created_date: ::Time
887
+ attr_accessor version: ::String
888
+ SENSITIVE: []
889
+ end
890
+
891
+ class SlotTypeRegexConfiguration
892
+ attr_accessor pattern: ::String
893
+ SENSITIVE: []
894
+ end
895
+
896
+ class StartImportRequest
897
+ attr_accessor payload: ::String
898
+ attr_accessor resource_type: ("BOT" | "INTENT" | "SLOT_TYPE")
899
+ attr_accessor merge_strategy: ("OVERWRITE_LATEST" | "FAIL_ON_CONFLICT")
900
+ attr_accessor tags: ::Array[Types::Tag]
901
+ SENSITIVE: []
902
+ end
903
+
904
+ class StartImportResponse
905
+ attr_accessor name: ::String
906
+ attr_accessor resource_type: ("BOT" | "INTENT" | "SLOT_TYPE")
907
+ attr_accessor merge_strategy: ("OVERWRITE_LATEST" | "FAIL_ON_CONFLICT")
908
+ attr_accessor import_id: ::String
909
+ attr_accessor import_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
910
+ attr_accessor tags: ::Array[Types::Tag]
911
+ attr_accessor created_date: ::Time
912
+ SENSITIVE: []
913
+ end
914
+
915
+ class StartMigrationRequest
916
+ attr_accessor v1_bot_name: ::String
917
+ attr_accessor v1_bot_version: ::String
918
+ attr_accessor v2_bot_name: ::String
919
+ attr_accessor v2_bot_role: ::String
920
+ attr_accessor migration_strategy: ("CREATE_NEW" | "UPDATE_EXISTING")
921
+ SENSITIVE: []
922
+ end
923
+
924
+ class StartMigrationResponse
925
+ attr_accessor v1_bot_name: ::String
926
+ attr_accessor v1_bot_version: ::String
927
+ attr_accessor v1_bot_locale: ("de-DE" | "en-AU" | "en-GB" | "en-IN" | "en-US" | "es-419" | "es-ES" | "es-US" | "fr-FR" | "fr-CA" | "it-IT" | "ja-JP" | "ko-KR")
928
+ attr_accessor v2_bot_id: ::String
929
+ attr_accessor v2_bot_role: ::String
930
+ attr_accessor migration_id: ::String
931
+ attr_accessor migration_strategy: ("CREATE_NEW" | "UPDATE_EXISTING")
932
+ attr_accessor migration_timestamp: ::Time
933
+ SENSITIVE: []
934
+ end
935
+
936
+ class Statement
937
+ attr_accessor messages: ::Array[Types::Message]
938
+ attr_accessor response_card: ::String
939
+ SENSITIVE: []
940
+ end
941
+
942
+ class Tag
943
+ attr_accessor key: ::String
944
+ attr_accessor value: ::String
945
+ SENSITIVE: []
946
+ end
947
+
948
+ class TagResourceRequest
949
+ attr_accessor resource_arn: ::String
950
+ attr_accessor tags: ::Array[Types::Tag]
951
+ SENSITIVE: []
952
+ end
953
+
954
+ class TagResourceResponse < Aws::EmptyStructure
955
+ end
956
+
957
+ class UntagResourceRequest
958
+ attr_accessor resource_arn: ::String
959
+ attr_accessor tag_keys: ::Array[::String]
960
+ SENSITIVE: []
961
+ end
962
+
963
+ class UntagResourceResponse < Aws::EmptyStructure
964
+ end
965
+
966
+ class UtteranceData
967
+ attr_accessor utterance_string: ::String
968
+ attr_accessor count: ::Integer
969
+ attr_accessor distinct_users: ::Integer
970
+ attr_accessor first_uttered_date: ::Time
971
+ attr_accessor last_uttered_date: ::Time
972
+ SENSITIVE: []
973
+ end
974
+
975
+ class UtteranceList
976
+ attr_accessor bot_version: ::String
977
+ attr_accessor utterances: ::Array[Types::UtteranceData]
978
+ SENSITIVE: []
979
+ end
980
+ end
981
+ end