aws-sdk 2.829.0 → 2.833.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/customer-profiles-2020-08-15.min.json +4 -2
  4. package/apis/databrew-2017-07-25.min.json +79 -62
  5. package/apis/ec2-2016-11-15.min.json +197 -190
  6. package/apis/elasticache-2015-02-02.min.json +1 -0
  7. package/apis/es-2015-01-01.min.json +6 -0
  8. package/apis/kafka-2018-11-14.min.json +41 -0
  9. package/apis/managedblockchain-2018-09-24.min.json +159 -36
  10. package/apis/metadata.json +8 -0
  11. package/apis/models.lex.v2-2020-08-07.examples.json +5 -0
  12. package/apis/models.lex.v2-2020-08-07.min.json +2845 -0
  13. package/apis/models.lex.v2-2020-08-07.paginators.json +49 -0
  14. package/apis/monitoring-2010-08-01.min.json +15 -9
  15. package/apis/redshift-2012-12-01.min.json +1 -1
  16. package/apis/resourcegroupstaggingapi-2017-01-26.min.json +14 -10
  17. package/apis/robomaker-2018-06-29.min.json +198 -170
  18. package/apis/runtime.lex.v2-2020-08-07.examples.json +4 -0
  19. package/apis/runtime.lex.v2-2020-08-07.min.json +531 -0
  20. package/apis/runtime.lex.v2-2020-08-07.paginators.json +3 -0
  21. package/apis/securityhub-2018-10-26.min.json +406 -187
  22. package/apis/sesv2-2019-09-27.min.json +40 -15
  23. package/clients/accessanalyzer.d.ts +5 -5
  24. package/clients/all.d.ts +2 -0
  25. package/clients/all.js +3 -1
  26. package/clients/backup.d.ts +27 -27
  27. package/clients/cloudwatch.d.ts +12 -1
  28. package/clients/customerprofiles.d.ts +2 -2
  29. package/clients/databrew.d.ts +170 -143
  30. package/clients/ec2.d.ts +119 -111
  31. package/clients/elasticache.d.ts +14 -10
  32. package/clients/es.d.ts +8 -0
  33. package/clients/greengrassv2.d.ts +6 -6
  34. package/clients/iot.d.ts +2 -2
  35. package/clients/kafka.d.ts +52 -0
  36. package/clients/lexmodelsv2.d.ts +3350 -0
  37. package/clients/lexmodelsv2.js +18 -0
  38. package/clients/lexruntimev2.d.ts +542 -0
  39. package/clients/lexruntimev2.js +18 -0
  40. package/clients/lightsail.d.ts +2 -2
  41. package/clients/managedblockchain.d.ts +140 -6
  42. package/clients/rds.d.ts +14 -14
  43. package/clients/redshift.d.ts +8 -8
  44. package/clients/resourcegroupstaggingapi.d.ts +50 -45
  45. package/clients/robomaker.d.ts +35 -3
  46. package/clients/securityhub.d.ts +410 -63
  47. package/clients/sesv2.d.ts +30 -2
  48. package/clients/ssm.d.ts +2 -2
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +91 -17
  51. package/dist/aws-sdk.js +225 -203
  52. package/dist/aws-sdk.min.js +60 -60
  53. package/lib/config.d.ts +1 -1
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. package/package.json +1 -1
@@ -0,0 +1,2845 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2020-08-07",
5
+ "endpointPrefix": "models-v2-lex",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "Lex Models V2",
9
+ "serviceFullName": "Amazon Lex Model Building V2",
10
+ "serviceId": "Lex Models V2",
11
+ "signatureVersion": "v4",
12
+ "signingName": "lex",
13
+ "uid": "models.lex.v2-2020-08-07"
14
+ },
15
+ "operations": {
16
+ "BuildBotLocale": {
17
+ "http": {
18
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/",
19
+ "responseCode": 202
20
+ },
21
+ "input": {
22
+ "type": "structure",
23
+ "required": [
24
+ "botId",
25
+ "botVersion",
26
+ "localeId"
27
+ ],
28
+ "members": {
29
+ "botId": {
30
+ "location": "uri",
31
+ "locationName": "botId"
32
+ },
33
+ "botVersion": {
34
+ "location": "uri",
35
+ "locationName": "botVersion"
36
+ },
37
+ "localeId": {
38
+ "location": "uri",
39
+ "locationName": "localeId"
40
+ }
41
+ }
42
+ },
43
+ "output": {
44
+ "type": "structure",
45
+ "members": {
46
+ "botId": {},
47
+ "botVersion": {},
48
+ "localeId": {},
49
+ "botLocaleStatus": {},
50
+ "lastBuildSubmittedDateTime": {
51
+ "type": "timestamp"
52
+ }
53
+ }
54
+ }
55
+ },
56
+ "CreateBot": {
57
+ "http": {
58
+ "method": "PUT",
59
+ "requestUri": "/bots/",
60
+ "responseCode": 202
61
+ },
62
+ "input": {
63
+ "type": "structure",
64
+ "required": [
65
+ "botName",
66
+ "roleArn",
67
+ "dataPrivacy",
68
+ "idleSessionTTLInSeconds"
69
+ ],
70
+ "members": {
71
+ "botName": {},
72
+ "description": {},
73
+ "roleArn": {},
74
+ "dataPrivacy": {
75
+ "shape": "Sc"
76
+ },
77
+ "idleSessionTTLInSeconds": {
78
+ "type": "integer"
79
+ },
80
+ "botTags": {
81
+ "shape": "Sf"
82
+ },
83
+ "testBotAliasTags": {
84
+ "shape": "Sf"
85
+ }
86
+ }
87
+ },
88
+ "output": {
89
+ "type": "structure",
90
+ "members": {
91
+ "botId": {},
92
+ "botName": {},
93
+ "description": {},
94
+ "roleArn": {},
95
+ "dataPrivacy": {
96
+ "shape": "Sc"
97
+ },
98
+ "idleSessionTTLInSeconds": {
99
+ "type": "integer"
100
+ },
101
+ "botStatus": {},
102
+ "creationDateTime": {
103
+ "type": "timestamp"
104
+ },
105
+ "botTags": {
106
+ "shape": "Sf"
107
+ },
108
+ "testBotAliasTags": {
109
+ "shape": "Sf"
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "CreateBotAlias": {
115
+ "http": {
116
+ "method": "PUT",
117
+ "requestUri": "/bots/{botId}/botaliases/",
118
+ "responseCode": 202
119
+ },
120
+ "input": {
121
+ "type": "structure",
122
+ "required": [
123
+ "botAliasName",
124
+ "botId"
125
+ ],
126
+ "members": {
127
+ "botAliasName": {},
128
+ "description": {},
129
+ "botVersion": {},
130
+ "botAliasLocaleSettings": {
131
+ "shape": "Sm"
132
+ },
133
+ "conversationLogSettings": {
134
+ "shape": "St"
135
+ },
136
+ "sentimentAnalysisSettings": {
137
+ "shape": "S16"
138
+ },
139
+ "botId": {
140
+ "location": "uri",
141
+ "locationName": "botId"
142
+ },
143
+ "tags": {
144
+ "shape": "Sf"
145
+ }
146
+ }
147
+ },
148
+ "output": {
149
+ "type": "structure",
150
+ "members": {
151
+ "botAliasId": {},
152
+ "botAliasName": {},
153
+ "description": {},
154
+ "botVersion": {},
155
+ "botAliasLocaleSettings": {
156
+ "shape": "Sm"
157
+ },
158
+ "conversationLogSettings": {
159
+ "shape": "St"
160
+ },
161
+ "sentimentAnalysisSettings": {
162
+ "shape": "S16"
163
+ },
164
+ "botAliasStatus": {},
165
+ "botId": {},
166
+ "creationDateTime": {
167
+ "type": "timestamp"
168
+ },
169
+ "tags": {
170
+ "shape": "Sf"
171
+ }
172
+ }
173
+ }
174
+ },
175
+ "CreateBotLocale": {
176
+ "http": {
177
+ "method": "PUT",
178
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/",
179
+ "responseCode": 202
180
+ },
181
+ "input": {
182
+ "type": "structure",
183
+ "required": [
184
+ "botId",
185
+ "botVersion",
186
+ "localeId",
187
+ "nluIntentConfidenceThreshold"
188
+ ],
189
+ "members": {
190
+ "botId": {
191
+ "location": "uri",
192
+ "locationName": "botId"
193
+ },
194
+ "botVersion": {
195
+ "location": "uri",
196
+ "locationName": "botVersion"
197
+ },
198
+ "localeId": {},
199
+ "description": {},
200
+ "nluIntentConfidenceThreshold": {
201
+ "type": "double"
202
+ },
203
+ "voiceSettings": {
204
+ "shape": "S1c"
205
+ }
206
+ }
207
+ },
208
+ "output": {
209
+ "type": "structure",
210
+ "members": {
211
+ "botId": {},
212
+ "botVersion": {},
213
+ "localeName": {},
214
+ "localeId": {},
215
+ "description": {},
216
+ "nluIntentConfidenceThreshold": {
217
+ "type": "double"
218
+ },
219
+ "voiceSettings": {
220
+ "shape": "S1c"
221
+ },
222
+ "botLocaleStatus": {},
223
+ "creationDateTime": {
224
+ "type": "timestamp"
225
+ }
226
+ }
227
+ }
228
+ },
229
+ "CreateBotVersion": {
230
+ "http": {
231
+ "method": "PUT",
232
+ "requestUri": "/bots/{botId}/botversions/",
233
+ "responseCode": 202
234
+ },
235
+ "input": {
236
+ "type": "structure",
237
+ "required": [
238
+ "botId",
239
+ "botVersionLocaleSpecification"
240
+ ],
241
+ "members": {
242
+ "botId": {
243
+ "location": "uri",
244
+ "locationName": "botId"
245
+ },
246
+ "description": {},
247
+ "botVersionLocaleSpecification": {
248
+ "shape": "S1h"
249
+ }
250
+ }
251
+ },
252
+ "output": {
253
+ "type": "structure",
254
+ "members": {
255
+ "botId": {},
256
+ "description": {},
257
+ "botVersion": {},
258
+ "botVersionLocaleSpecification": {
259
+ "shape": "S1h"
260
+ },
261
+ "botStatus": {},
262
+ "creationDateTime": {
263
+ "type": "timestamp"
264
+ }
265
+ }
266
+ }
267
+ },
268
+ "CreateIntent": {
269
+ "http": {
270
+ "method": "PUT",
271
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/",
272
+ "responseCode": 200
273
+ },
274
+ "input": {
275
+ "type": "structure",
276
+ "required": [
277
+ "intentName",
278
+ "botId",
279
+ "botVersion",
280
+ "localeId"
281
+ ],
282
+ "members": {
283
+ "intentName": {},
284
+ "description": {},
285
+ "parentIntentSignature": {},
286
+ "sampleUtterances": {
287
+ "shape": "S1n"
288
+ },
289
+ "dialogCodeHook": {
290
+ "shape": "S1q"
291
+ },
292
+ "fulfillmentCodeHook": {
293
+ "shape": "S1r"
294
+ },
295
+ "intentConfirmationSetting": {
296
+ "shape": "S1s"
297
+ },
298
+ "intentClosingSetting": {
299
+ "shape": "S2e"
300
+ },
301
+ "inputContexts": {
302
+ "shape": "S2f"
303
+ },
304
+ "outputContexts": {
305
+ "shape": "S2h"
306
+ },
307
+ "kendraConfiguration": {
308
+ "shape": "S2l"
309
+ },
310
+ "botId": {
311
+ "location": "uri",
312
+ "locationName": "botId"
313
+ },
314
+ "botVersion": {
315
+ "location": "uri",
316
+ "locationName": "botVersion"
317
+ },
318
+ "localeId": {
319
+ "location": "uri",
320
+ "locationName": "localeId"
321
+ }
322
+ }
323
+ },
324
+ "output": {
325
+ "type": "structure",
326
+ "members": {
327
+ "intentId": {},
328
+ "intentName": {},
329
+ "description": {},
330
+ "parentIntentSignature": {},
331
+ "sampleUtterances": {
332
+ "shape": "S1n"
333
+ },
334
+ "dialogCodeHook": {
335
+ "shape": "S1q"
336
+ },
337
+ "fulfillmentCodeHook": {
338
+ "shape": "S1r"
339
+ },
340
+ "intentConfirmationSetting": {
341
+ "shape": "S1s"
342
+ },
343
+ "intentClosingSetting": {
344
+ "shape": "S2e"
345
+ },
346
+ "inputContexts": {
347
+ "shape": "S2f"
348
+ },
349
+ "outputContexts": {
350
+ "shape": "S2h"
351
+ },
352
+ "kendraConfiguration": {
353
+ "shape": "S2l"
354
+ },
355
+ "botId": {},
356
+ "botVersion": {},
357
+ "localeId": {},
358
+ "creationDateTime": {
359
+ "type": "timestamp"
360
+ }
361
+ }
362
+ }
363
+ },
364
+ "CreateSlot": {
365
+ "http": {
366
+ "method": "PUT",
367
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/",
368
+ "responseCode": 200
369
+ },
370
+ "input": {
371
+ "type": "structure",
372
+ "required": [
373
+ "slotName",
374
+ "slotTypeId",
375
+ "valueElicitationSetting",
376
+ "botId",
377
+ "botVersion",
378
+ "localeId",
379
+ "intentId"
380
+ ],
381
+ "members": {
382
+ "slotName": {},
383
+ "description": {},
384
+ "slotTypeId": {},
385
+ "valueElicitationSetting": {
386
+ "shape": "S2r"
387
+ },
388
+ "obfuscationSetting": {
389
+ "shape": "S31"
390
+ },
391
+ "botId": {
392
+ "location": "uri",
393
+ "locationName": "botId"
394
+ },
395
+ "botVersion": {
396
+ "location": "uri",
397
+ "locationName": "botVersion"
398
+ },
399
+ "localeId": {
400
+ "location": "uri",
401
+ "locationName": "localeId"
402
+ },
403
+ "intentId": {
404
+ "location": "uri",
405
+ "locationName": "intentId"
406
+ }
407
+ }
408
+ },
409
+ "output": {
410
+ "type": "structure",
411
+ "members": {
412
+ "slotId": {},
413
+ "slotName": {},
414
+ "description": {},
415
+ "slotTypeId": {},
416
+ "valueElicitationSetting": {
417
+ "shape": "S2r"
418
+ },
419
+ "obfuscationSetting": {
420
+ "shape": "S31"
421
+ },
422
+ "botId": {},
423
+ "botVersion": {},
424
+ "localeId": {},
425
+ "intentId": {},
426
+ "creationDateTime": {
427
+ "type": "timestamp"
428
+ }
429
+ }
430
+ }
431
+ },
432
+ "CreateSlotType": {
433
+ "http": {
434
+ "method": "PUT",
435
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/",
436
+ "responseCode": 200
437
+ },
438
+ "input": {
439
+ "type": "structure",
440
+ "required": [
441
+ "slotTypeName",
442
+ "valueSelectionSetting",
443
+ "botId",
444
+ "botVersion",
445
+ "localeId"
446
+ ],
447
+ "members": {
448
+ "slotTypeName": {},
449
+ "description": {},
450
+ "slotTypeValues": {
451
+ "shape": "S35"
452
+ },
453
+ "valueSelectionSetting": {
454
+ "shape": "S3a"
455
+ },
456
+ "parentSlotTypeSignature": {},
457
+ "botId": {
458
+ "location": "uri",
459
+ "locationName": "botId"
460
+ },
461
+ "botVersion": {
462
+ "location": "uri",
463
+ "locationName": "botVersion"
464
+ },
465
+ "localeId": {
466
+ "location": "uri",
467
+ "locationName": "localeId"
468
+ }
469
+ }
470
+ },
471
+ "output": {
472
+ "type": "structure",
473
+ "members": {
474
+ "slotTypeId": {},
475
+ "slotTypeName": {},
476
+ "description": {},
477
+ "slotTypeValues": {
478
+ "shape": "S35"
479
+ },
480
+ "valueSelectionSetting": {
481
+ "shape": "S3a"
482
+ },
483
+ "parentSlotTypeSignature": {},
484
+ "botId": {},
485
+ "botVersion": {},
486
+ "localeId": {},
487
+ "creationDateTime": {
488
+ "type": "timestamp"
489
+ }
490
+ }
491
+ }
492
+ },
493
+ "DeleteBot": {
494
+ "http": {
495
+ "method": "DELETE",
496
+ "requestUri": "/bots/{botId}/",
497
+ "responseCode": 202
498
+ },
499
+ "input": {
500
+ "type": "structure",
501
+ "required": [
502
+ "botId"
503
+ ],
504
+ "members": {
505
+ "botId": {
506
+ "location": "uri",
507
+ "locationName": "botId"
508
+ },
509
+ "skipResourceInUseCheck": {
510
+ "location": "querystring",
511
+ "locationName": "skipResourceInUseCheck",
512
+ "type": "boolean"
513
+ }
514
+ }
515
+ },
516
+ "output": {
517
+ "type": "structure",
518
+ "members": {
519
+ "botId": {},
520
+ "botStatus": {}
521
+ }
522
+ }
523
+ },
524
+ "DeleteBotAlias": {
525
+ "http": {
526
+ "method": "DELETE",
527
+ "requestUri": "/bots/{botId}/botaliases/{botAliasId}/",
528
+ "responseCode": 202
529
+ },
530
+ "input": {
531
+ "type": "structure",
532
+ "required": [
533
+ "botAliasId",
534
+ "botId"
535
+ ],
536
+ "members": {
537
+ "botAliasId": {
538
+ "location": "uri",
539
+ "locationName": "botAliasId"
540
+ },
541
+ "botId": {
542
+ "location": "uri",
543
+ "locationName": "botId"
544
+ },
545
+ "skipResourceInUseCheck": {
546
+ "location": "querystring",
547
+ "locationName": "skipResourceInUseCheck",
548
+ "type": "boolean"
549
+ }
550
+ }
551
+ },
552
+ "output": {
553
+ "type": "structure",
554
+ "members": {
555
+ "botAliasId": {},
556
+ "botId": {},
557
+ "botAliasStatus": {}
558
+ }
559
+ }
560
+ },
561
+ "DeleteBotLocale": {
562
+ "http": {
563
+ "method": "DELETE",
564
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/",
565
+ "responseCode": 202
566
+ },
567
+ "input": {
568
+ "type": "structure",
569
+ "required": [
570
+ "botId",
571
+ "botVersion",
572
+ "localeId"
573
+ ],
574
+ "members": {
575
+ "botId": {
576
+ "location": "uri",
577
+ "locationName": "botId"
578
+ },
579
+ "botVersion": {
580
+ "location": "uri",
581
+ "locationName": "botVersion"
582
+ },
583
+ "localeId": {
584
+ "location": "uri",
585
+ "locationName": "localeId"
586
+ }
587
+ }
588
+ },
589
+ "output": {
590
+ "type": "structure",
591
+ "members": {
592
+ "botId": {},
593
+ "botVersion": {},
594
+ "localeId": {},
595
+ "botLocaleStatus": {}
596
+ }
597
+ }
598
+ },
599
+ "DeleteBotVersion": {
600
+ "http": {
601
+ "method": "DELETE",
602
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/",
603
+ "responseCode": 202
604
+ },
605
+ "input": {
606
+ "type": "structure",
607
+ "required": [
608
+ "botId",
609
+ "botVersion"
610
+ ],
611
+ "members": {
612
+ "botId": {
613
+ "location": "uri",
614
+ "locationName": "botId"
615
+ },
616
+ "botVersion": {
617
+ "location": "uri",
618
+ "locationName": "botVersion"
619
+ },
620
+ "skipResourceInUseCheck": {
621
+ "location": "querystring",
622
+ "locationName": "skipResourceInUseCheck",
623
+ "type": "boolean"
624
+ }
625
+ }
626
+ },
627
+ "output": {
628
+ "type": "structure",
629
+ "members": {
630
+ "botId": {},
631
+ "botVersion": {},
632
+ "botStatus": {}
633
+ }
634
+ }
635
+ },
636
+ "DeleteIntent": {
637
+ "http": {
638
+ "method": "DELETE",
639
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/",
640
+ "responseCode": 204
641
+ },
642
+ "input": {
643
+ "type": "structure",
644
+ "required": [
645
+ "intentId",
646
+ "botId",
647
+ "botVersion",
648
+ "localeId"
649
+ ],
650
+ "members": {
651
+ "intentId": {
652
+ "location": "uri",
653
+ "locationName": "intentId"
654
+ },
655
+ "botId": {
656
+ "location": "uri",
657
+ "locationName": "botId"
658
+ },
659
+ "botVersion": {
660
+ "location": "uri",
661
+ "locationName": "botVersion"
662
+ },
663
+ "localeId": {
664
+ "location": "uri",
665
+ "locationName": "localeId"
666
+ }
667
+ }
668
+ }
669
+ },
670
+ "DeleteSlot": {
671
+ "http": {
672
+ "method": "DELETE",
673
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/",
674
+ "responseCode": 204
675
+ },
676
+ "input": {
677
+ "type": "structure",
678
+ "required": [
679
+ "slotId",
680
+ "botId",
681
+ "botVersion",
682
+ "localeId",
683
+ "intentId"
684
+ ],
685
+ "members": {
686
+ "slotId": {
687
+ "location": "uri",
688
+ "locationName": "slotId"
689
+ },
690
+ "botId": {
691
+ "location": "uri",
692
+ "locationName": "botId"
693
+ },
694
+ "botVersion": {
695
+ "location": "uri",
696
+ "locationName": "botVersion"
697
+ },
698
+ "localeId": {
699
+ "location": "uri",
700
+ "locationName": "localeId"
701
+ },
702
+ "intentId": {
703
+ "location": "uri",
704
+ "locationName": "intentId"
705
+ }
706
+ }
707
+ }
708
+ },
709
+ "DeleteSlotType": {
710
+ "http": {
711
+ "method": "DELETE",
712
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/",
713
+ "responseCode": 204
714
+ },
715
+ "input": {
716
+ "type": "structure",
717
+ "required": [
718
+ "slotTypeId",
719
+ "botId",
720
+ "botVersion",
721
+ "localeId"
722
+ ],
723
+ "members": {
724
+ "slotTypeId": {
725
+ "location": "uri",
726
+ "locationName": "slotTypeId"
727
+ },
728
+ "botId": {
729
+ "location": "uri",
730
+ "locationName": "botId"
731
+ },
732
+ "botVersion": {
733
+ "location": "uri",
734
+ "locationName": "botVersion"
735
+ },
736
+ "localeId": {
737
+ "location": "uri",
738
+ "locationName": "localeId"
739
+ },
740
+ "skipResourceInUseCheck": {
741
+ "location": "querystring",
742
+ "locationName": "skipResourceInUseCheck",
743
+ "type": "boolean"
744
+ }
745
+ }
746
+ }
747
+ },
748
+ "DescribeBot": {
749
+ "http": {
750
+ "method": "GET",
751
+ "requestUri": "/bots/{botId}/",
752
+ "responseCode": 200
753
+ },
754
+ "input": {
755
+ "type": "structure",
756
+ "required": [
757
+ "botId"
758
+ ],
759
+ "members": {
760
+ "botId": {
761
+ "location": "uri",
762
+ "locationName": "botId"
763
+ }
764
+ }
765
+ },
766
+ "output": {
767
+ "type": "structure",
768
+ "members": {
769
+ "botId": {},
770
+ "botName": {},
771
+ "description": {},
772
+ "roleArn": {},
773
+ "dataPrivacy": {
774
+ "shape": "Sc"
775
+ },
776
+ "idleSessionTTLInSeconds": {
777
+ "type": "integer"
778
+ },
779
+ "botStatus": {},
780
+ "creationDateTime": {
781
+ "type": "timestamp"
782
+ },
783
+ "lastUpdatedDateTime": {
784
+ "type": "timestamp"
785
+ }
786
+ }
787
+ }
788
+ },
789
+ "DescribeBotAlias": {
790
+ "http": {
791
+ "method": "GET",
792
+ "requestUri": "/bots/{botId}/botaliases/{botAliasId}/",
793
+ "responseCode": 200
794
+ },
795
+ "input": {
796
+ "type": "structure",
797
+ "required": [
798
+ "botAliasId",
799
+ "botId"
800
+ ],
801
+ "members": {
802
+ "botAliasId": {
803
+ "location": "uri",
804
+ "locationName": "botAliasId"
805
+ },
806
+ "botId": {
807
+ "location": "uri",
808
+ "locationName": "botId"
809
+ }
810
+ }
811
+ },
812
+ "output": {
813
+ "type": "structure",
814
+ "members": {
815
+ "botAliasId": {},
816
+ "botAliasName": {},
817
+ "description": {},
818
+ "botVersion": {},
819
+ "botAliasLocaleSettings": {
820
+ "shape": "Sm"
821
+ },
822
+ "conversationLogSettings": {
823
+ "shape": "St"
824
+ },
825
+ "sentimentAnalysisSettings": {
826
+ "shape": "S16"
827
+ },
828
+ "botAliasHistoryEvents": {
829
+ "type": "list",
830
+ "member": {
831
+ "type": "structure",
832
+ "members": {
833
+ "botVersion": {},
834
+ "startDate": {
835
+ "type": "timestamp"
836
+ },
837
+ "endDate": {
838
+ "type": "timestamp"
839
+ }
840
+ }
841
+ }
842
+ },
843
+ "botAliasStatus": {},
844
+ "botId": {},
845
+ "creationDateTime": {
846
+ "type": "timestamp"
847
+ },
848
+ "lastUpdatedDateTime": {
849
+ "type": "timestamp"
850
+ }
851
+ }
852
+ }
853
+ },
854
+ "DescribeBotLocale": {
855
+ "http": {
856
+ "method": "GET",
857
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/",
858
+ "responseCode": 200
859
+ },
860
+ "input": {
861
+ "type": "structure",
862
+ "required": [
863
+ "botId",
864
+ "botVersion",
865
+ "localeId"
866
+ ],
867
+ "members": {
868
+ "botId": {
869
+ "location": "uri",
870
+ "locationName": "botId"
871
+ },
872
+ "botVersion": {
873
+ "location": "uri",
874
+ "locationName": "botVersion"
875
+ },
876
+ "localeId": {
877
+ "location": "uri",
878
+ "locationName": "localeId"
879
+ }
880
+ }
881
+ },
882
+ "output": {
883
+ "type": "structure",
884
+ "members": {
885
+ "botId": {},
886
+ "botVersion": {},
887
+ "localeId": {},
888
+ "localeName": {},
889
+ "description": {},
890
+ "nluIntentConfidenceThreshold": {
891
+ "type": "double"
892
+ },
893
+ "voiceSettings": {
894
+ "shape": "S1c"
895
+ },
896
+ "intentsCount": {
897
+ "type": "integer"
898
+ },
899
+ "slotTypesCount": {
900
+ "type": "integer"
901
+ },
902
+ "botLocaleStatus": {},
903
+ "failureReasons": {
904
+ "shape": "S41"
905
+ },
906
+ "creationDateTime": {
907
+ "type": "timestamp"
908
+ },
909
+ "lastUpdatedDateTime": {
910
+ "type": "timestamp"
911
+ },
912
+ "lastBuildSubmittedDateTime": {
913
+ "type": "timestamp"
914
+ },
915
+ "botLocaleHistoryEvents": {
916
+ "type": "list",
917
+ "member": {
918
+ "type": "structure",
919
+ "required": [
920
+ "event",
921
+ "eventDate"
922
+ ],
923
+ "members": {
924
+ "event": {},
925
+ "eventDate": {
926
+ "type": "timestamp"
927
+ }
928
+ }
929
+ }
930
+ }
931
+ }
932
+ }
933
+ },
934
+ "DescribeBotVersion": {
935
+ "http": {
936
+ "method": "GET",
937
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/",
938
+ "responseCode": 200
939
+ },
940
+ "input": {
941
+ "type": "structure",
942
+ "required": [
943
+ "botId",
944
+ "botVersion"
945
+ ],
946
+ "members": {
947
+ "botId": {
948
+ "location": "uri",
949
+ "locationName": "botId"
950
+ },
951
+ "botVersion": {
952
+ "location": "uri",
953
+ "locationName": "botVersion"
954
+ }
955
+ }
956
+ },
957
+ "output": {
958
+ "type": "structure",
959
+ "members": {
960
+ "botId": {},
961
+ "botName": {},
962
+ "botVersion": {},
963
+ "description": {},
964
+ "roleArn": {},
965
+ "dataPrivacy": {
966
+ "shape": "Sc"
967
+ },
968
+ "idleSessionTTLInSeconds": {
969
+ "type": "integer"
970
+ },
971
+ "botStatus": {},
972
+ "failureReasons": {
973
+ "shape": "S41"
974
+ },
975
+ "creationDateTime": {
976
+ "type": "timestamp"
977
+ }
978
+ }
979
+ }
980
+ },
981
+ "DescribeIntent": {
982
+ "http": {
983
+ "method": "GET",
984
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/",
985
+ "responseCode": 200
986
+ },
987
+ "input": {
988
+ "type": "structure",
989
+ "required": [
990
+ "intentId",
991
+ "botId",
992
+ "botVersion",
993
+ "localeId"
994
+ ],
995
+ "members": {
996
+ "intentId": {
997
+ "location": "uri",
998
+ "locationName": "intentId"
999
+ },
1000
+ "botId": {
1001
+ "location": "uri",
1002
+ "locationName": "botId"
1003
+ },
1004
+ "botVersion": {
1005
+ "location": "uri",
1006
+ "locationName": "botVersion"
1007
+ },
1008
+ "localeId": {
1009
+ "location": "uri",
1010
+ "locationName": "localeId"
1011
+ }
1012
+ }
1013
+ },
1014
+ "output": {
1015
+ "type": "structure",
1016
+ "members": {
1017
+ "intentId": {},
1018
+ "intentName": {},
1019
+ "description": {},
1020
+ "parentIntentSignature": {},
1021
+ "sampleUtterances": {
1022
+ "shape": "S1n"
1023
+ },
1024
+ "dialogCodeHook": {
1025
+ "shape": "S1q"
1026
+ },
1027
+ "fulfillmentCodeHook": {
1028
+ "shape": "S1r"
1029
+ },
1030
+ "slotPriorities": {
1031
+ "shape": "S4a"
1032
+ },
1033
+ "intentConfirmationSetting": {
1034
+ "shape": "S1s"
1035
+ },
1036
+ "intentClosingSetting": {
1037
+ "shape": "S2e"
1038
+ },
1039
+ "inputContexts": {
1040
+ "shape": "S2f"
1041
+ },
1042
+ "outputContexts": {
1043
+ "shape": "S2h"
1044
+ },
1045
+ "kendraConfiguration": {
1046
+ "shape": "S2l"
1047
+ },
1048
+ "botId": {},
1049
+ "botVersion": {},
1050
+ "localeId": {},
1051
+ "creationDateTime": {
1052
+ "type": "timestamp"
1053
+ },
1054
+ "lastUpdatedDateTime": {
1055
+ "type": "timestamp"
1056
+ }
1057
+ }
1058
+ }
1059
+ },
1060
+ "DescribeSlot": {
1061
+ "http": {
1062
+ "method": "GET",
1063
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/",
1064
+ "responseCode": 200
1065
+ },
1066
+ "input": {
1067
+ "type": "structure",
1068
+ "required": [
1069
+ "slotId",
1070
+ "botId",
1071
+ "botVersion",
1072
+ "localeId",
1073
+ "intentId"
1074
+ ],
1075
+ "members": {
1076
+ "slotId": {
1077
+ "location": "uri",
1078
+ "locationName": "slotId"
1079
+ },
1080
+ "botId": {
1081
+ "location": "uri",
1082
+ "locationName": "botId"
1083
+ },
1084
+ "botVersion": {
1085
+ "location": "uri",
1086
+ "locationName": "botVersion"
1087
+ },
1088
+ "localeId": {
1089
+ "location": "uri",
1090
+ "locationName": "localeId"
1091
+ },
1092
+ "intentId": {
1093
+ "location": "uri",
1094
+ "locationName": "intentId"
1095
+ }
1096
+ }
1097
+ },
1098
+ "output": {
1099
+ "type": "structure",
1100
+ "members": {
1101
+ "slotId": {},
1102
+ "slotName": {},
1103
+ "description": {},
1104
+ "slotTypeId": {},
1105
+ "valueElicitationSetting": {
1106
+ "shape": "S2r"
1107
+ },
1108
+ "obfuscationSetting": {
1109
+ "shape": "S31"
1110
+ },
1111
+ "botId": {},
1112
+ "botVersion": {},
1113
+ "localeId": {},
1114
+ "intentId": {},
1115
+ "creationDateTime": {
1116
+ "type": "timestamp"
1117
+ },
1118
+ "lastUpdatedDateTime": {
1119
+ "type": "timestamp"
1120
+ }
1121
+ }
1122
+ }
1123
+ },
1124
+ "DescribeSlotType": {
1125
+ "http": {
1126
+ "method": "GET",
1127
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/",
1128
+ "responseCode": 200
1129
+ },
1130
+ "input": {
1131
+ "type": "structure",
1132
+ "required": [
1133
+ "slotTypeId",
1134
+ "botId",
1135
+ "botVersion",
1136
+ "localeId"
1137
+ ],
1138
+ "members": {
1139
+ "slotTypeId": {
1140
+ "location": "uri",
1141
+ "locationName": "slotTypeId"
1142
+ },
1143
+ "botId": {
1144
+ "location": "uri",
1145
+ "locationName": "botId"
1146
+ },
1147
+ "botVersion": {
1148
+ "location": "uri",
1149
+ "locationName": "botVersion"
1150
+ },
1151
+ "localeId": {
1152
+ "location": "uri",
1153
+ "locationName": "localeId"
1154
+ }
1155
+ }
1156
+ },
1157
+ "output": {
1158
+ "type": "structure",
1159
+ "members": {
1160
+ "slotTypeId": {},
1161
+ "slotTypeName": {},
1162
+ "description": {},
1163
+ "slotTypeValues": {
1164
+ "shape": "S35"
1165
+ },
1166
+ "valueSelectionSetting": {
1167
+ "shape": "S3a"
1168
+ },
1169
+ "parentSlotTypeSignature": {},
1170
+ "botId": {},
1171
+ "botVersion": {},
1172
+ "localeId": {},
1173
+ "creationDateTime": {
1174
+ "type": "timestamp"
1175
+ },
1176
+ "lastUpdatedDateTime": {
1177
+ "type": "timestamp"
1178
+ }
1179
+ }
1180
+ }
1181
+ },
1182
+ "ListBotAliases": {
1183
+ "http": {
1184
+ "requestUri": "/bots/{botId}/botaliases/",
1185
+ "responseCode": 200
1186
+ },
1187
+ "input": {
1188
+ "type": "structure",
1189
+ "required": [
1190
+ "botId"
1191
+ ],
1192
+ "members": {
1193
+ "botId": {
1194
+ "location": "uri",
1195
+ "locationName": "botId"
1196
+ },
1197
+ "maxResults": {
1198
+ "type": "integer"
1199
+ },
1200
+ "nextToken": {}
1201
+ }
1202
+ },
1203
+ "output": {
1204
+ "type": "structure",
1205
+ "members": {
1206
+ "botAliasSummaries": {
1207
+ "type": "list",
1208
+ "member": {
1209
+ "type": "structure",
1210
+ "members": {
1211
+ "botAliasId": {},
1212
+ "botAliasName": {},
1213
+ "description": {},
1214
+ "botVersion": {},
1215
+ "botAliasStatus": {},
1216
+ "creationDateTime": {
1217
+ "type": "timestamp"
1218
+ },
1219
+ "lastUpdatedDateTime": {
1220
+ "type": "timestamp"
1221
+ }
1222
+ }
1223
+ }
1224
+ },
1225
+ "nextToken": {},
1226
+ "botId": {}
1227
+ }
1228
+ }
1229
+ },
1230
+ "ListBotLocales": {
1231
+ "http": {
1232
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/",
1233
+ "responseCode": 200
1234
+ },
1235
+ "input": {
1236
+ "type": "structure",
1237
+ "required": [
1238
+ "botId",
1239
+ "botVersion"
1240
+ ],
1241
+ "members": {
1242
+ "botId": {
1243
+ "location": "uri",
1244
+ "locationName": "botId"
1245
+ },
1246
+ "botVersion": {
1247
+ "location": "uri",
1248
+ "locationName": "botVersion"
1249
+ },
1250
+ "sortBy": {
1251
+ "type": "structure",
1252
+ "required": [
1253
+ "attribute",
1254
+ "order"
1255
+ ],
1256
+ "members": {
1257
+ "attribute": {},
1258
+ "order": {}
1259
+ }
1260
+ },
1261
+ "filters": {
1262
+ "type": "list",
1263
+ "member": {
1264
+ "type": "structure",
1265
+ "required": [
1266
+ "name",
1267
+ "values",
1268
+ "operator"
1269
+ ],
1270
+ "members": {
1271
+ "name": {},
1272
+ "values": {
1273
+ "shape": "S4u"
1274
+ },
1275
+ "operator": {}
1276
+ }
1277
+ }
1278
+ },
1279
+ "maxResults": {
1280
+ "type": "integer"
1281
+ },
1282
+ "nextToken": {}
1283
+ }
1284
+ },
1285
+ "output": {
1286
+ "type": "structure",
1287
+ "members": {
1288
+ "botId": {},
1289
+ "botVersion": {},
1290
+ "nextToken": {},
1291
+ "botLocaleSummaries": {
1292
+ "type": "list",
1293
+ "member": {
1294
+ "type": "structure",
1295
+ "members": {
1296
+ "localeId": {},
1297
+ "localeName": {},
1298
+ "description": {},
1299
+ "botLocaleStatus": {},
1300
+ "lastUpdatedDateTime": {
1301
+ "type": "timestamp"
1302
+ },
1303
+ "lastBuildSubmittedDateTime": {
1304
+ "type": "timestamp"
1305
+ }
1306
+ }
1307
+ }
1308
+ }
1309
+ }
1310
+ }
1311
+ },
1312
+ "ListBotVersions": {
1313
+ "http": {
1314
+ "requestUri": "/bots/{botId}/botversions/",
1315
+ "responseCode": 200
1316
+ },
1317
+ "input": {
1318
+ "type": "structure",
1319
+ "required": [
1320
+ "botId"
1321
+ ],
1322
+ "members": {
1323
+ "botId": {
1324
+ "location": "uri",
1325
+ "locationName": "botId"
1326
+ },
1327
+ "sortBy": {
1328
+ "type": "structure",
1329
+ "required": [
1330
+ "attribute",
1331
+ "order"
1332
+ ],
1333
+ "members": {
1334
+ "attribute": {},
1335
+ "order": {}
1336
+ }
1337
+ },
1338
+ "maxResults": {
1339
+ "type": "integer"
1340
+ },
1341
+ "nextToken": {}
1342
+ }
1343
+ },
1344
+ "output": {
1345
+ "type": "structure",
1346
+ "members": {
1347
+ "botId": {},
1348
+ "botVersionSummaries": {
1349
+ "type": "list",
1350
+ "member": {
1351
+ "type": "structure",
1352
+ "members": {
1353
+ "botName": {},
1354
+ "botVersion": {},
1355
+ "description": {},
1356
+ "botStatus": {},
1357
+ "creationDateTime": {
1358
+ "type": "timestamp"
1359
+ }
1360
+ }
1361
+ }
1362
+ },
1363
+ "nextToken": {}
1364
+ }
1365
+ }
1366
+ },
1367
+ "ListBots": {
1368
+ "http": {
1369
+ "requestUri": "/bots/",
1370
+ "responseCode": 200
1371
+ },
1372
+ "input": {
1373
+ "type": "structure",
1374
+ "members": {
1375
+ "sortBy": {
1376
+ "type": "structure",
1377
+ "required": [
1378
+ "attribute",
1379
+ "order"
1380
+ ],
1381
+ "members": {
1382
+ "attribute": {},
1383
+ "order": {}
1384
+ }
1385
+ },
1386
+ "filters": {
1387
+ "type": "list",
1388
+ "member": {
1389
+ "type": "structure",
1390
+ "required": [
1391
+ "name",
1392
+ "values",
1393
+ "operator"
1394
+ ],
1395
+ "members": {
1396
+ "name": {},
1397
+ "values": {
1398
+ "shape": "S4u"
1399
+ },
1400
+ "operator": {}
1401
+ }
1402
+ }
1403
+ },
1404
+ "maxResults": {
1405
+ "type": "integer"
1406
+ },
1407
+ "nextToken": {}
1408
+ }
1409
+ },
1410
+ "output": {
1411
+ "type": "structure",
1412
+ "members": {
1413
+ "botSummaries": {
1414
+ "type": "list",
1415
+ "member": {
1416
+ "type": "structure",
1417
+ "members": {
1418
+ "botId": {},
1419
+ "botName": {},
1420
+ "description": {},
1421
+ "botStatus": {},
1422
+ "latestBotVersion": {},
1423
+ "lastUpdatedDateTime": {
1424
+ "type": "timestamp"
1425
+ }
1426
+ }
1427
+ }
1428
+ },
1429
+ "nextToken": {}
1430
+ }
1431
+ }
1432
+ },
1433
+ "ListBuiltInIntents": {
1434
+ "http": {
1435
+ "requestUri": "/builtins/locales/{localeId}/intents/",
1436
+ "responseCode": 200
1437
+ },
1438
+ "input": {
1439
+ "type": "structure",
1440
+ "required": [
1441
+ "localeId"
1442
+ ],
1443
+ "members": {
1444
+ "localeId": {
1445
+ "location": "uri",
1446
+ "locationName": "localeId"
1447
+ },
1448
+ "sortBy": {
1449
+ "type": "structure",
1450
+ "required": [
1451
+ "attribute",
1452
+ "order"
1453
+ ],
1454
+ "members": {
1455
+ "attribute": {},
1456
+ "order": {}
1457
+ }
1458
+ },
1459
+ "maxResults": {
1460
+ "type": "integer"
1461
+ },
1462
+ "nextToken": {}
1463
+ }
1464
+ },
1465
+ "output": {
1466
+ "type": "structure",
1467
+ "members": {
1468
+ "builtInIntentSummaries": {
1469
+ "type": "list",
1470
+ "member": {
1471
+ "type": "structure",
1472
+ "members": {
1473
+ "intentSignature": {},
1474
+ "description": {}
1475
+ }
1476
+ }
1477
+ },
1478
+ "nextToken": {},
1479
+ "localeId": {}
1480
+ }
1481
+ }
1482
+ },
1483
+ "ListBuiltInSlotTypes": {
1484
+ "http": {
1485
+ "requestUri": "/builtins/locales/{localeId}/slottypes/",
1486
+ "responseCode": 200
1487
+ },
1488
+ "input": {
1489
+ "type": "structure",
1490
+ "required": [
1491
+ "localeId"
1492
+ ],
1493
+ "members": {
1494
+ "localeId": {
1495
+ "location": "uri",
1496
+ "locationName": "localeId"
1497
+ },
1498
+ "sortBy": {
1499
+ "type": "structure",
1500
+ "required": [
1501
+ "attribute",
1502
+ "order"
1503
+ ],
1504
+ "members": {
1505
+ "attribute": {},
1506
+ "order": {}
1507
+ }
1508
+ },
1509
+ "maxResults": {
1510
+ "type": "integer"
1511
+ },
1512
+ "nextToken": {}
1513
+ }
1514
+ },
1515
+ "output": {
1516
+ "type": "structure",
1517
+ "members": {
1518
+ "builtInSlotTypeSummaries": {
1519
+ "type": "list",
1520
+ "member": {
1521
+ "type": "structure",
1522
+ "members": {
1523
+ "slotTypeSignature": {},
1524
+ "description": {}
1525
+ }
1526
+ }
1527
+ },
1528
+ "nextToken": {},
1529
+ "localeId": {}
1530
+ }
1531
+ }
1532
+ },
1533
+ "ListIntents": {
1534
+ "http": {
1535
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/",
1536
+ "responseCode": 200
1537
+ },
1538
+ "input": {
1539
+ "type": "structure",
1540
+ "required": [
1541
+ "botId",
1542
+ "botVersion",
1543
+ "localeId"
1544
+ ],
1545
+ "members": {
1546
+ "botId": {
1547
+ "location": "uri",
1548
+ "locationName": "botId"
1549
+ },
1550
+ "botVersion": {
1551
+ "location": "uri",
1552
+ "locationName": "botVersion"
1553
+ },
1554
+ "localeId": {
1555
+ "location": "uri",
1556
+ "locationName": "localeId"
1557
+ },
1558
+ "sortBy": {
1559
+ "type": "structure",
1560
+ "required": [
1561
+ "attribute",
1562
+ "order"
1563
+ ],
1564
+ "members": {
1565
+ "attribute": {},
1566
+ "order": {}
1567
+ }
1568
+ },
1569
+ "filters": {
1570
+ "type": "list",
1571
+ "member": {
1572
+ "type": "structure",
1573
+ "required": [
1574
+ "name",
1575
+ "values",
1576
+ "operator"
1577
+ ],
1578
+ "members": {
1579
+ "name": {},
1580
+ "values": {
1581
+ "shape": "S4u"
1582
+ },
1583
+ "operator": {}
1584
+ }
1585
+ }
1586
+ },
1587
+ "maxResults": {
1588
+ "type": "integer"
1589
+ },
1590
+ "nextToken": {}
1591
+ }
1592
+ },
1593
+ "output": {
1594
+ "type": "structure",
1595
+ "members": {
1596
+ "botId": {},
1597
+ "botVersion": {},
1598
+ "localeId": {},
1599
+ "intentSummaries": {
1600
+ "type": "list",
1601
+ "member": {
1602
+ "type": "structure",
1603
+ "members": {
1604
+ "intentId": {},
1605
+ "intentName": {},
1606
+ "description": {},
1607
+ "parentIntentSignature": {},
1608
+ "inputContexts": {
1609
+ "shape": "S2f"
1610
+ },
1611
+ "outputContexts": {
1612
+ "shape": "S2h"
1613
+ },
1614
+ "lastUpdatedDateTime": {
1615
+ "type": "timestamp"
1616
+ }
1617
+ }
1618
+ }
1619
+ },
1620
+ "nextToken": {}
1621
+ }
1622
+ }
1623
+ },
1624
+ "ListSlotTypes": {
1625
+ "http": {
1626
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/",
1627
+ "responseCode": 200
1628
+ },
1629
+ "input": {
1630
+ "type": "structure",
1631
+ "required": [
1632
+ "botId",
1633
+ "botVersion",
1634
+ "localeId"
1635
+ ],
1636
+ "members": {
1637
+ "botId": {
1638
+ "location": "uri",
1639
+ "locationName": "botId"
1640
+ },
1641
+ "botVersion": {
1642
+ "location": "uri",
1643
+ "locationName": "botVersion"
1644
+ },
1645
+ "localeId": {
1646
+ "location": "uri",
1647
+ "locationName": "localeId"
1648
+ },
1649
+ "sortBy": {
1650
+ "type": "structure",
1651
+ "required": [
1652
+ "attribute",
1653
+ "order"
1654
+ ],
1655
+ "members": {
1656
+ "attribute": {},
1657
+ "order": {}
1658
+ }
1659
+ },
1660
+ "filters": {
1661
+ "type": "list",
1662
+ "member": {
1663
+ "type": "structure",
1664
+ "required": [
1665
+ "name",
1666
+ "values",
1667
+ "operator"
1668
+ ],
1669
+ "members": {
1670
+ "name": {},
1671
+ "values": {
1672
+ "shape": "S4u"
1673
+ },
1674
+ "operator": {}
1675
+ }
1676
+ }
1677
+ },
1678
+ "maxResults": {
1679
+ "type": "integer"
1680
+ },
1681
+ "nextToken": {}
1682
+ }
1683
+ },
1684
+ "output": {
1685
+ "type": "structure",
1686
+ "members": {
1687
+ "botId": {},
1688
+ "botVersion": {},
1689
+ "localeId": {},
1690
+ "slotTypeSummaries": {
1691
+ "type": "list",
1692
+ "member": {
1693
+ "type": "structure",
1694
+ "members": {
1695
+ "slotTypeId": {},
1696
+ "slotTypeName": {},
1697
+ "description": {},
1698
+ "parentSlotTypeSignature": {},
1699
+ "lastUpdatedDateTime": {
1700
+ "type": "timestamp"
1701
+ }
1702
+ }
1703
+ }
1704
+ },
1705
+ "nextToken": {}
1706
+ }
1707
+ }
1708
+ },
1709
+ "ListSlots": {
1710
+ "http": {
1711
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/",
1712
+ "responseCode": 200
1713
+ },
1714
+ "input": {
1715
+ "type": "structure",
1716
+ "required": [
1717
+ "botId",
1718
+ "botVersion",
1719
+ "localeId",
1720
+ "intentId"
1721
+ ],
1722
+ "members": {
1723
+ "botId": {
1724
+ "location": "uri",
1725
+ "locationName": "botId"
1726
+ },
1727
+ "botVersion": {
1728
+ "location": "uri",
1729
+ "locationName": "botVersion"
1730
+ },
1731
+ "localeId": {
1732
+ "location": "uri",
1733
+ "locationName": "localeId"
1734
+ },
1735
+ "intentId": {
1736
+ "location": "uri",
1737
+ "locationName": "intentId"
1738
+ },
1739
+ "sortBy": {
1740
+ "type": "structure",
1741
+ "required": [
1742
+ "attribute",
1743
+ "order"
1744
+ ],
1745
+ "members": {
1746
+ "attribute": {},
1747
+ "order": {}
1748
+ }
1749
+ },
1750
+ "filters": {
1751
+ "type": "list",
1752
+ "member": {
1753
+ "type": "structure",
1754
+ "required": [
1755
+ "name",
1756
+ "values",
1757
+ "operator"
1758
+ ],
1759
+ "members": {
1760
+ "name": {},
1761
+ "values": {
1762
+ "shape": "S4u"
1763
+ },
1764
+ "operator": {}
1765
+ }
1766
+ }
1767
+ },
1768
+ "maxResults": {
1769
+ "type": "integer"
1770
+ },
1771
+ "nextToken": {}
1772
+ }
1773
+ },
1774
+ "output": {
1775
+ "type": "structure",
1776
+ "members": {
1777
+ "botId": {},
1778
+ "botVersion": {},
1779
+ "localeId": {},
1780
+ "intentId": {},
1781
+ "slotSummaries": {
1782
+ "type": "list",
1783
+ "member": {
1784
+ "type": "structure",
1785
+ "members": {
1786
+ "slotId": {},
1787
+ "slotName": {},
1788
+ "description": {},
1789
+ "slotConstraint": {},
1790
+ "slotTypeId": {},
1791
+ "valueElicitationPromptSpecification": {
1792
+ "shape": "S1t"
1793
+ },
1794
+ "lastUpdatedDateTime": {
1795
+ "type": "timestamp"
1796
+ }
1797
+ }
1798
+ }
1799
+ },
1800
+ "nextToken": {}
1801
+ }
1802
+ }
1803
+ },
1804
+ "ListTagsForResource": {
1805
+ "http": {
1806
+ "method": "GET",
1807
+ "requestUri": "/tags/{resourceARN}",
1808
+ "responseCode": 200
1809
+ },
1810
+ "input": {
1811
+ "type": "structure",
1812
+ "required": [
1813
+ "resourceARN"
1814
+ ],
1815
+ "members": {
1816
+ "resourceARN": {
1817
+ "location": "uri",
1818
+ "locationName": "resourceARN"
1819
+ }
1820
+ }
1821
+ },
1822
+ "output": {
1823
+ "type": "structure",
1824
+ "members": {
1825
+ "tags": {
1826
+ "shape": "Sf"
1827
+ }
1828
+ }
1829
+ }
1830
+ },
1831
+ "TagResource": {
1832
+ "http": {
1833
+ "requestUri": "/tags/{resourceARN}",
1834
+ "responseCode": 200
1835
+ },
1836
+ "input": {
1837
+ "type": "structure",
1838
+ "required": [
1839
+ "resourceARN",
1840
+ "tags"
1841
+ ],
1842
+ "members": {
1843
+ "resourceARN": {
1844
+ "location": "uri",
1845
+ "locationName": "resourceARN"
1846
+ },
1847
+ "tags": {
1848
+ "shape": "Sf"
1849
+ }
1850
+ }
1851
+ },
1852
+ "output": {
1853
+ "type": "structure",
1854
+ "members": {}
1855
+ }
1856
+ },
1857
+ "UntagResource": {
1858
+ "http": {
1859
+ "method": "DELETE",
1860
+ "requestUri": "/tags/{resourceARN}",
1861
+ "responseCode": 200
1862
+ },
1863
+ "input": {
1864
+ "type": "structure",
1865
+ "required": [
1866
+ "resourceARN",
1867
+ "tagKeys"
1868
+ ],
1869
+ "members": {
1870
+ "resourceARN": {
1871
+ "location": "uri",
1872
+ "locationName": "resourceARN"
1873
+ },
1874
+ "tagKeys": {
1875
+ "location": "querystring",
1876
+ "locationName": "tagKeys",
1877
+ "type": "list",
1878
+ "member": {}
1879
+ }
1880
+ }
1881
+ },
1882
+ "output": {
1883
+ "type": "structure",
1884
+ "members": {}
1885
+ }
1886
+ },
1887
+ "UpdateBot": {
1888
+ "http": {
1889
+ "method": "PUT",
1890
+ "requestUri": "/bots/{botId}/",
1891
+ "responseCode": 202
1892
+ },
1893
+ "input": {
1894
+ "type": "structure",
1895
+ "required": [
1896
+ "botId",
1897
+ "botName",
1898
+ "roleArn",
1899
+ "dataPrivacy",
1900
+ "idleSessionTTLInSeconds"
1901
+ ],
1902
+ "members": {
1903
+ "botId": {
1904
+ "location": "uri",
1905
+ "locationName": "botId"
1906
+ },
1907
+ "botName": {},
1908
+ "description": {},
1909
+ "roleArn": {},
1910
+ "dataPrivacy": {
1911
+ "shape": "Sc"
1912
+ },
1913
+ "idleSessionTTLInSeconds": {
1914
+ "type": "integer"
1915
+ }
1916
+ }
1917
+ },
1918
+ "output": {
1919
+ "type": "structure",
1920
+ "members": {
1921
+ "botId": {},
1922
+ "botName": {},
1923
+ "description": {},
1924
+ "roleArn": {},
1925
+ "dataPrivacy": {
1926
+ "shape": "Sc"
1927
+ },
1928
+ "idleSessionTTLInSeconds": {
1929
+ "type": "integer"
1930
+ },
1931
+ "botStatus": {},
1932
+ "creationDateTime": {
1933
+ "type": "timestamp"
1934
+ },
1935
+ "lastUpdatedDateTime": {
1936
+ "type": "timestamp"
1937
+ }
1938
+ }
1939
+ }
1940
+ },
1941
+ "UpdateBotAlias": {
1942
+ "http": {
1943
+ "method": "PUT",
1944
+ "requestUri": "/bots/{botId}/botaliases/{botAliasId}/",
1945
+ "responseCode": 202
1946
+ },
1947
+ "input": {
1948
+ "type": "structure",
1949
+ "required": [
1950
+ "botAliasId",
1951
+ "botAliasName",
1952
+ "botId"
1953
+ ],
1954
+ "members": {
1955
+ "botAliasId": {
1956
+ "location": "uri",
1957
+ "locationName": "botAliasId"
1958
+ },
1959
+ "botAliasName": {},
1960
+ "description": {},
1961
+ "botVersion": {},
1962
+ "botAliasLocaleSettings": {
1963
+ "shape": "Sm"
1964
+ },
1965
+ "conversationLogSettings": {
1966
+ "shape": "St"
1967
+ },
1968
+ "sentimentAnalysisSettings": {
1969
+ "shape": "S16"
1970
+ },
1971
+ "botId": {
1972
+ "location": "uri",
1973
+ "locationName": "botId"
1974
+ }
1975
+ }
1976
+ },
1977
+ "output": {
1978
+ "type": "structure",
1979
+ "members": {
1980
+ "botAliasId": {},
1981
+ "botAliasName": {},
1982
+ "description": {},
1983
+ "botVersion": {},
1984
+ "botAliasLocaleSettings": {
1985
+ "shape": "Sm"
1986
+ },
1987
+ "conversationLogSettings": {
1988
+ "shape": "St"
1989
+ },
1990
+ "sentimentAnalysisSettings": {
1991
+ "shape": "S16"
1992
+ },
1993
+ "botAliasStatus": {},
1994
+ "botId": {},
1995
+ "creationDateTime": {
1996
+ "type": "timestamp"
1997
+ },
1998
+ "lastUpdatedDateTime": {
1999
+ "type": "timestamp"
2000
+ }
2001
+ }
2002
+ }
2003
+ },
2004
+ "UpdateBotLocale": {
2005
+ "http": {
2006
+ "method": "PUT",
2007
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/",
2008
+ "responseCode": 202
2009
+ },
2010
+ "input": {
2011
+ "type": "structure",
2012
+ "required": [
2013
+ "botId",
2014
+ "botVersion",
2015
+ "localeId",
2016
+ "nluIntentConfidenceThreshold"
2017
+ ],
2018
+ "members": {
2019
+ "botId": {
2020
+ "location": "uri",
2021
+ "locationName": "botId"
2022
+ },
2023
+ "botVersion": {
2024
+ "location": "uri",
2025
+ "locationName": "botVersion"
2026
+ },
2027
+ "localeId": {
2028
+ "location": "uri",
2029
+ "locationName": "localeId"
2030
+ },
2031
+ "description": {},
2032
+ "nluIntentConfidenceThreshold": {
2033
+ "type": "double"
2034
+ },
2035
+ "voiceSettings": {
2036
+ "shape": "S1c"
2037
+ }
2038
+ }
2039
+ },
2040
+ "output": {
2041
+ "type": "structure",
2042
+ "members": {
2043
+ "botId": {},
2044
+ "botVersion": {},
2045
+ "localeId": {},
2046
+ "localeName": {},
2047
+ "description": {},
2048
+ "nluIntentConfidenceThreshold": {
2049
+ "type": "double"
2050
+ },
2051
+ "voiceSettings": {
2052
+ "shape": "S1c"
2053
+ },
2054
+ "botLocaleStatus": {},
2055
+ "failureReasons": {
2056
+ "shape": "S41"
2057
+ },
2058
+ "creationDateTime": {
2059
+ "type": "timestamp"
2060
+ },
2061
+ "lastUpdatedDateTime": {
2062
+ "type": "timestamp"
2063
+ }
2064
+ }
2065
+ }
2066
+ },
2067
+ "UpdateIntent": {
2068
+ "http": {
2069
+ "method": "PUT",
2070
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/",
2071
+ "responseCode": 200
2072
+ },
2073
+ "input": {
2074
+ "type": "structure",
2075
+ "required": [
2076
+ "intentId",
2077
+ "intentName",
2078
+ "botId",
2079
+ "botVersion",
2080
+ "localeId"
2081
+ ],
2082
+ "members": {
2083
+ "intentId": {
2084
+ "location": "uri",
2085
+ "locationName": "intentId"
2086
+ },
2087
+ "intentName": {},
2088
+ "description": {},
2089
+ "parentIntentSignature": {},
2090
+ "sampleUtterances": {
2091
+ "shape": "S1n"
2092
+ },
2093
+ "dialogCodeHook": {
2094
+ "shape": "S1q"
2095
+ },
2096
+ "fulfillmentCodeHook": {
2097
+ "shape": "S1r"
2098
+ },
2099
+ "slotPriorities": {
2100
+ "shape": "S4a"
2101
+ },
2102
+ "intentConfirmationSetting": {
2103
+ "shape": "S1s"
2104
+ },
2105
+ "intentClosingSetting": {
2106
+ "shape": "S2e"
2107
+ },
2108
+ "inputContexts": {
2109
+ "shape": "S2f"
2110
+ },
2111
+ "outputContexts": {
2112
+ "shape": "S2h"
2113
+ },
2114
+ "kendraConfiguration": {
2115
+ "shape": "S2l"
2116
+ },
2117
+ "botId": {
2118
+ "location": "uri",
2119
+ "locationName": "botId"
2120
+ },
2121
+ "botVersion": {
2122
+ "location": "uri",
2123
+ "locationName": "botVersion"
2124
+ },
2125
+ "localeId": {
2126
+ "location": "uri",
2127
+ "locationName": "localeId"
2128
+ }
2129
+ }
2130
+ },
2131
+ "output": {
2132
+ "type": "structure",
2133
+ "members": {
2134
+ "intentId": {},
2135
+ "intentName": {},
2136
+ "description": {},
2137
+ "parentIntentSignature": {},
2138
+ "sampleUtterances": {
2139
+ "shape": "S1n"
2140
+ },
2141
+ "dialogCodeHook": {
2142
+ "shape": "S1q"
2143
+ },
2144
+ "fulfillmentCodeHook": {
2145
+ "shape": "S1r"
2146
+ },
2147
+ "slotPriorities": {
2148
+ "shape": "S4a"
2149
+ },
2150
+ "intentConfirmationSetting": {
2151
+ "shape": "S1s"
2152
+ },
2153
+ "intentClosingSetting": {
2154
+ "shape": "S2e"
2155
+ },
2156
+ "inputContexts": {
2157
+ "shape": "S2f"
2158
+ },
2159
+ "outputContexts": {
2160
+ "shape": "S2h"
2161
+ },
2162
+ "kendraConfiguration": {
2163
+ "shape": "S2l"
2164
+ },
2165
+ "botId": {},
2166
+ "botVersion": {},
2167
+ "localeId": {},
2168
+ "creationDateTime": {
2169
+ "type": "timestamp"
2170
+ },
2171
+ "lastUpdatedDateTime": {
2172
+ "type": "timestamp"
2173
+ }
2174
+ }
2175
+ }
2176
+ },
2177
+ "UpdateSlot": {
2178
+ "http": {
2179
+ "method": "PUT",
2180
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/",
2181
+ "responseCode": 200
2182
+ },
2183
+ "input": {
2184
+ "type": "structure",
2185
+ "required": [
2186
+ "slotId",
2187
+ "slotName",
2188
+ "slotTypeId",
2189
+ "valueElicitationSetting",
2190
+ "botId",
2191
+ "botVersion",
2192
+ "localeId",
2193
+ "intentId"
2194
+ ],
2195
+ "members": {
2196
+ "slotId": {
2197
+ "location": "uri",
2198
+ "locationName": "slotId"
2199
+ },
2200
+ "slotName": {},
2201
+ "description": {},
2202
+ "slotTypeId": {},
2203
+ "valueElicitationSetting": {
2204
+ "shape": "S2r"
2205
+ },
2206
+ "obfuscationSetting": {
2207
+ "shape": "S31"
2208
+ },
2209
+ "botId": {
2210
+ "location": "uri",
2211
+ "locationName": "botId"
2212
+ },
2213
+ "botVersion": {
2214
+ "location": "uri",
2215
+ "locationName": "botVersion"
2216
+ },
2217
+ "localeId": {
2218
+ "location": "uri",
2219
+ "locationName": "localeId"
2220
+ },
2221
+ "intentId": {
2222
+ "location": "uri",
2223
+ "locationName": "intentId"
2224
+ }
2225
+ }
2226
+ },
2227
+ "output": {
2228
+ "type": "structure",
2229
+ "members": {
2230
+ "slotId": {},
2231
+ "slotName": {},
2232
+ "description": {},
2233
+ "slotTypeId": {},
2234
+ "valueElicitationSetting": {
2235
+ "shape": "S2r"
2236
+ },
2237
+ "obfuscationSetting": {
2238
+ "shape": "S31"
2239
+ },
2240
+ "botId": {},
2241
+ "botVersion": {},
2242
+ "localeId": {},
2243
+ "intentId": {},
2244
+ "creationDateTime": {
2245
+ "type": "timestamp"
2246
+ },
2247
+ "lastUpdatedDateTime": {
2248
+ "type": "timestamp"
2249
+ }
2250
+ }
2251
+ }
2252
+ },
2253
+ "UpdateSlotType": {
2254
+ "http": {
2255
+ "method": "PUT",
2256
+ "requestUri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/",
2257
+ "responseCode": 202
2258
+ },
2259
+ "input": {
2260
+ "type": "structure",
2261
+ "required": [
2262
+ "slotTypeId",
2263
+ "slotTypeName",
2264
+ "valueSelectionSetting",
2265
+ "botId",
2266
+ "botVersion",
2267
+ "localeId"
2268
+ ],
2269
+ "members": {
2270
+ "slotTypeId": {
2271
+ "location": "uri",
2272
+ "locationName": "slotTypeId"
2273
+ },
2274
+ "slotTypeName": {},
2275
+ "description": {},
2276
+ "slotTypeValues": {
2277
+ "shape": "S35"
2278
+ },
2279
+ "valueSelectionSetting": {
2280
+ "shape": "S3a"
2281
+ },
2282
+ "parentSlotTypeSignature": {},
2283
+ "botId": {
2284
+ "location": "uri",
2285
+ "locationName": "botId"
2286
+ },
2287
+ "botVersion": {
2288
+ "location": "uri",
2289
+ "locationName": "botVersion"
2290
+ },
2291
+ "localeId": {
2292
+ "location": "uri",
2293
+ "locationName": "localeId"
2294
+ }
2295
+ }
2296
+ },
2297
+ "output": {
2298
+ "type": "structure",
2299
+ "members": {
2300
+ "slotTypeId": {},
2301
+ "slotTypeName": {},
2302
+ "description": {},
2303
+ "slotTypeValues": {
2304
+ "shape": "S35"
2305
+ },
2306
+ "valueSelectionSetting": {
2307
+ "shape": "S3a"
2308
+ },
2309
+ "parentSlotTypeSignature": {},
2310
+ "botId": {},
2311
+ "botVersion": {},
2312
+ "localeId": {},
2313
+ "creationDateTime": {
2314
+ "type": "timestamp"
2315
+ },
2316
+ "lastUpdatedDateTime": {
2317
+ "type": "timestamp"
2318
+ }
2319
+ }
2320
+ }
2321
+ }
2322
+ },
2323
+ "shapes": {
2324
+ "Sc": {
2325
+ "type": "structure",
2326
+ "required": [
2327
+ "childDirected"
2328
+ ],
2329
+ "members": {
2330
+ "childDirected": {
2331
+ "type": "boolean"
2332
+ }
2333
+ }
2334
+ },
2335
+ "Sf": {
2336
+ "type": "map",
2337
+ "key": {},
2338
+ "value": {}
2339
+ },
2340
+ "Sm": {
2341
+ "type": "map",
2342
+ "key": {},
2343
+ "value": {
2344
+ "type": "structure",
2345
+ "required": [
2346
+ "enabled"
2347
+ ],
2348
+ "members": {
2349
+ "enabled": {
2350
+ "type": "boolean"
2351
+ },
2352
+ "codeHookSpecification": {
2353
+ "type": "structure",
2354
+ "required": [
2355
+ "lambdaCodeHook"
2356
+ ],
2357
+ "members": {
2358
+ "lambdaCodeHook": {
2359
+ "type": "structure",
2360
+ "required": [
2361
+ "lambdaARN",
2362
+ "codeHookInterfaceVersion"
2363
+ ],
2364
+ "members": {
2365
+ "lambdaARN": {},
2366
+ "codeHookInterfaceVersion": {}
2367
+ }
2368
+ }
2369
+ }
2370
+ }
2371
+ }
2372
+ }
2373
+ },
2374
+ "St": {
2375
+ "type": "structure",
2376
+ "members": {
2377
+ "textLogSettings": {
2378
+ "type": "list",
2379
+ "member": {
2380
+ "type": "structure",
2381
+ "required": [
2382
+ "enabled",
2383
+ "destination"
2384
+ ],
2385
+ "members": {
2386
+ "enabled": {
2387
+ "type": "boolean"
2388
+ },
2389
+ "destination": {
2390
+ "type": "structure",
2391
+ "required": [
2392
+ "cloudWatch"
2393
+ ],
2394
+ "members": {
2395
+ "cloudWatch": {
2396
+ "type": "structure",
2397
+ "required": [
2398
+ "cloudWatchLogGroupArn",
2399
+ "logPrefix"
2400
+ ],
2401
+ "members": {
2402
+ "cloudWatchLogGroupArn": {},
2403
+ "logPrefix": {}
2404
+ }
2405
+ }
2406
+ }
2407
+ }
2408
+ }
2409
+ }
2410
+ },
2411
+ "audioLogSettings": {
2412
+ "type": "list",
2413
+ "member": {
2414
+ "type": "structure",
2415
+ "required": [
2416
+ "enabled",
2417
+ "destination"
2418
+ ],
2419
+ "members": {
2420
+ "enabled": {
2421
+ "type": "boolean"
2422
+ },
2423
+ "destination": {
2424
+ "type": "structure",
2425
+ "required": [
2426
+ "s3Bucket"
2427
+ ],
2428
+ "members": {
2429
+ "s3Bucket": {
2430
+ "type": "structure",
2431
+ "required": [
2432
+ "s3BucketArn",
2433
+ "logPrefix"
2434
+ ],
2435
+ "members": {
2436
+ "kmsKeyArn": {},
2437
+ "s3BucketArn": {},
2438
+ "logPrefix": {}
2439
+ }
2440
+ }
2441
+ }
2442
+ }
2443
+ }
2444
+ }
2445
+ }
2446
+ }
2447
+ },
2448
+ "S16": {
2449
+ "type": "structure",
2450
+ "required": [
2451
+ "detectSentiment"
2452
+ ],
2453
+ "members": {
2454
+ "detectSentiment": {
2455
+ "type": "boolean"
2456
+ }
2457
+ }
2458
+ },
2459
+ "S1c": {
2460
+ "type": "structure",
2461
+ "required": [
2462
+ "voiceId"
2463
+ ],
2464
+ "members": {
2465
+ "voiceId": {}
2466
+ }
2467
+ },
2468
+ "S1h": {
2469
+ "type": "map",
2470
+ "key": {},
2471
+ "value": {
2472
+ "type": "structure",
2473
+ "required": [
2474
+ "sourceBotVersion"
2475
+ ],
2476
+ "members": {
2477
+ "sourceBotVersion": {}
2478
+ }
2479
+ }
2480
+ },
2481
+ "S1n": {
2482
+ "type": "list",
2483
+ "member": {
2484
+ "type": "structure",
2485
+ "required": [
2486
+ "utterance"
2487
+ ],
2488
+ "members": {
2489
+ "utterance": {}
2490
+ }
2491
+ }
2492
+ },
2493
+ "S1q": {
2494
+ "type": "structure",
2495
+ "required": [
2496
+ "enabled"
2497
+ ],
2498
+ "members": {
2499
+ "enabled": {
2500
+ "type": "boolean"
2501
+ }
2502
+ }
2503
+ },
2504
+ "S1r": {
2505
+ "type": "structure",
2506
+ "required": [
2507
+ "enabled"
2508
+ ],
2509
+ "members": {
2510
+ "enabled": {
2511
+ "type": "boolean"
2512
+ }
2513
+ }
2514
+ },
2515
+ "S1s": {
2516
+ "type": "structure",
2517
+ "required": [
2518
+ "promptSpecification",
2519
+ "declinationResponse"
2520
+ ],
2521
+ "members": {
2522
+ "promptSpecification": {
2523
+ "shape": "S1t"
2524
+ },
2525
+ "declinationResponse": {
2526
+ "shape": "S2d"
2527
+ }
2528
+ }
2529
+ },
2530
+ "S1t": {
2531
+ "type": "structure",
2532
+ "required": [
2533
+ "messageGroups",
2534
+ "maxRetries"
2535
+ ],
2536
+ "members": {
2537
+ "messageGroups": {
2538
+ "shape": "S1u"
2539
+ },
2540
+ "maxRetries": {
2541
+ "type": "integer"
2542
+ },
2543
+ "allowInterrupt": {
2544
+ "type": "boolean"
2545
+ }
2546
+ }
2547
+ },
2548
+ "S1u": {
2549
+ "type": "list",
2550
+ "member": {
2551
+ "type": "structure",
2552
+ "required": [
2553
+ "message"
2554
+ ],
2555
+ "members": {
2556
+ "message": {
2557
+ "shape": "S1w"
2558
+ },
2559
+ "variations": {
2560
+ "type": "list",
2561
+ "member": {
2562
+ "shape": "S1w"
2563
+ }
2564
+ }
2565
+ }
2566
+ }
2567
+ },
2568
+ "S1w": {
2569
+ "type": "structure",
2570
+ "members": {
2571
+ "plainTextMessage": {
2572
+ "type": "structure",
2573
+ "required": [
2574
+ "value"
2575
+ ],
2576
+ "members": {
2577
+ "value": {}
2578
+ }
2579
+ },
2580
+ "customPayload": {
2581
+ "type": "structure",
2582
+ "required": [
2583
+ "value"
2584
+ ],
2585
+ "members": {
2586
+ "value": {}
2587
+ }
2588
+ },
2589
+ "ssmlMessage": {
2590
+ "type": "structure",
2591
+ "required": [
2592
+ "value"
2593
+ ],
2594
+ "members": {
2595
+ "value": {}
2596
+ }
2597
+ },
2598
+ "imageResponseCard": {
2599
+ "type": "structure",
2600
+ "required": [
2601
+ "title"
2602
+ ],
2603
+ "members": {
2604
+ "title": {},
2605
+ "subtitle": {},
2606
+ "imageUrl": {},
2607
+ "buttons": {
2608
+ "type": "list",
2609
+ "member": {
2610
+ "type": "structure",
2611
+ "required": [
2612
+ "text",
2613
+ "value"
2614
+ ],
2615
+ "members": {
2616
+ "text": {},
2617
+ "value": {}
2618
+ }
2619
+ }
2620
+ }
2621
+ }
2622
+ }
2623
+ }
2624
+ },
2625
+ "S2d": {
2626
+ "type": "structure",
2627
+ "required": [
2628
+ "messageGroups"
2629
+ ],
2630
+ "members": {
2631
+ "messageGroups": {
2632
+ "shape": "S1u"
2633
+ },
2634
+ "allowInterrupt": {
2635
+ "type": "boolean"
2636
+ }
2637
+ }
2638
+ },
2639
+ "S2e": {
2640
+ "type": "structure",
2641
+ "required": [
2642
+ "closingResponse"
2643
+ ],
2644
+ "members": {
2645
+ "closingResponse": {
2646
+ "shape": "S2d"
2647
+ }
2648
+ }
2649
+ },
2650
+ "S2f": {
2651
+ "type": "list",
2652
+ "member": {
2653
+ "type": "structure",
2654
+ "required": [
2655
+ "name"
2656
+ ],
2657
+ "members": {
2658
+ "name": {}
2659
+ }
2660
+ }
2661
+ },
2662
+ "S2h": {
2663
+ "type": "list",
2664
+ "member": {
2665
+ "type": "structure",
2666
+ "required": [
2667
+ "name",
2668
+ "timeToLiveInSeconds",
2669
+ "turnsToLive"
2670
+ ],
2671
+ "members": {
2672
+ "name": {},
2673
+ "timeToLiveInSeconds": {
2674
+ "type": "integer"
2675
+ },
2676
+ "turnsToLive": {
2677
+ "type": "integer"
2678
+ }
2679
+ }
2680
+ }
2681
+ },
2682
+ "S2l": {
2683
+ "type": "structure",
2684
+ "required": [
2685
+ "kendraIndex"
2686
+ ],
2687
+ "members": {
2688
+ "kendraIndex": {},
2689
+ "queryFilterStringEnabled": {
2690
+ "type": "boolean"
2691
+ },
2692
+ "queryFilterString": {}
2693
+ }
2694
+ },
2695
+ "S2r": {
2696
+ "type": "structure",
2697
+ "required": [
2698
+ "slotConstraint"
2699
+ ],
2700
+ "members": {
2701
+ "defaultValueSpecification": {
2702
+ "type": "structure",
2703
+ "required": [
2704
+ "defaultValueList"
2705
+ ],
2706
+ "members": {
2707
+ "defaultValueList": {
2708
+ "type": "list",
2709
+ "member": {
2710
+ "type": "structure",
2711
+ "required": [
2712
+ "defaultValue"
2713
+ ],
2714
+ "members": {
2715
+ "defaultValue": {}
2716
+ }
2717
+ }
2718
+ }
2719
+ }
2720
+ },
2721
+ "slotConstraint": {},
2722
+ "promptSpecification": {
2723
+ "shape": "S1t"
2724
+ },
2725
+ "sampleUtterances": {
2726
+ "shape": "S1n"
2727
+ },
2728
+ "waitAndContinueSpecification": {
2729
+ "type": "structure",
2730
+ "required": [
2731
+ "waitingResponse",
2732
+ "continueResponse"
2733
+ ],
2734
+ "members": {
2735
+ "waitingResponse": {
2736
+ "shape": "S2d"
2737
+ },
2738
+ "continueResponse": {
2739
+ "shape": "S2d"
2740
+ },
2741
+ "stillWaitingResponse": {
2742
+ "type": "structure",
2743
+ "required": [
2744
+ "messageGroups",
2745
+ "frequencyInSeconds",
2746
+ "timeoutInSeconds"
2747
+ ],
2748
+ "members": {
2749
+ "messageGroups": {
2750
+ "shape": "S1u"
2751
+ },
2752
+ "frequencyInSeconds": {
2753
+ "type": "integer"
2754
+ },
2755
+ "timeoutInSeconds": {
2756
+ "type": "integer"
2757
+ },
2758
+ "allowInterrupt": {
2759
+ "type": "boolean"
2760
+ }
2761
+ }
2762
+ }
2763
+ }
2764
+ }
2765
+ }
2766
+ },
2767
+ "S31": {
2768
+ "type": "structure",
2769
+ "required": [
2770
+ "obfuscationSettingType"
2771
+ ],
2772
+ "members": {
2773
+ "obfuscationSettingType": {}
2774
+ }
2775
+ },
2776
+ "S35": {
2777
+ "type": "list",
2778
+ "member": {
2779
+ "type": "structure",
2780
+ "members": {
2781
+ "sampleValue": {
2782
+ "shape": "S37"
2783
+ },
2784
+ "synonyms": {
2785
+ "type": "list",
2786
+ "member": {
2787
+ "shape": "S37"
2788
+ }
2789
+ }
2790
+ }
2791
+ }
2792
+ },
2793
+ "S37": {
2794
+ "type": "structure",
2795
+ "required": [
2796
+ "value"
2797
+ ],
2798
+ "members": {
2799
+ "value": {}
2800
+ }
2801
+ },
2802
+ "S3a": {
2803
+ "type": "structure",
2804
+ "required": [
2805
+ "resolutionStrategy"
2806
+ ],
2807
+ "members": {
2808
+ "resolutionStrategy": {},
2809
+ "regexFilter": {
2810
+ "type": "structure",
2811
+ "required": [
2812
+ "pattern"
2813
+ ],
2814
+ "members": {
2815
+ "pattern": {}
2816
+ }
2817
+ }
2818
+ }
2819
+ },
2820
+ "S41": {
2821
+ "type": "list",
2822
+ "member": {}
2823
+ },
2824
+ "S4a": {
2825
+ "type": "list",
2826
+ "member": {
2827
+ "type": "structure",
2828
+ "required": [
2829
+ "priority",
2830
+ "slotId"
2831
+ ],
2832
+ "members": {
2833
+ "priority": {
2834
+ "type": "integer"
2835
+ },
2836
+ "slotId": {}
2837
+ }
2838
+ }
2839
+ },
2840
+ "S4u": {
2841
+ "type": "list",
2842
+ "member": {}
2843
+ }
2844
+ }
2845
+ }