cdk-docker-image-deployment 0.0.200 → 0.0.201
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.
- package/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +74 -41
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +314 -64
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +599 -8
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +162 -88
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +758 -44
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +35 -29
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +69 -61
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.examples.json +5 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +363 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1061 -880
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +25 -8
- package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +266 -11
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +696 -14
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +180 -107
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +364 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +29 -21
- package/node_modules/aws-sdk/clients/guardduty.d.ts +22 -13
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +379 -0
- package/node_modules/aws-sdk/clients/ivsrealtime.js +18 -0
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +219 -14
- package/node_modules/aws-sdk/clients/textract.d.ts +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +52 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +12 -12
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"shape": "S3"
|
|
31
31
|
},
|
|
32
32
|
"ClientRequestToken": {
|
|
33
|
-
"shape": "S4",
|
|
34
33
|
"idempotencyToken": true
|
|
35
34
|
},
|
|
36
35
|
"Tags": {
|
|
@@ -74,6 +73,44 @@
|
|
|
74
73
|
}
|
|
75
74
|
}
|
|
76
75
|
},
|
|
76
|
+
"CreateAppInstanceBot": {
|
|
77
|
+
"http": {
|
|
78
|
+
"requestUri": "/app-instance-bots",
|
|
79
|
+
"responseCode": 201
|
|
80
|
+
},
|
|
81
|
+
"input": {
|
|
82
|
+
"type": "structure",
|
|
83
|
+
"required": [
|
|
84
|
+
"AppInstanceArn",
|
|
85
|
+
"ClientRequestToken",
|
|
86
|
+
"Configuration"
|
|
87
|
+
],
|
|
88
|
+
"members": {
|
|
89
|
+
"AppInstanceArn": {},
|
|
90
|
+
"Name": {
|
|
91
|
+
"shape": "Se"
|
|
92
|
+
},
|
|
93
|
+
"Metadata": {
|
|
94
|
+
"shape": "S3"
|
|
95
|
+
},
|
|
96
|
+
"ClientRequestToken": {
|
|
97
|
+
"idempotencyToken": true
|
|
98
|
+
},
|
|
99
|
+
"Tags": {
|
|
100
|
+
"shape": "S5"
|
|
101
|
+
},
|
|
102
|
+
"Configuration": {
|
|
103
|
+
"shape": "Sg"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"output": {
|
|
108
|
+
"type": "structure",
|
|
109
|
+
"members": {
|
|
110
|
+
"AppInstanceBotArn": {}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
77
114
|
"CreateAppInstanceUser": {
|
|
78
115
|
"http": {
|
|
79
116
|
"requestUri": "/app-instance-users",
|
|
@@ -94,17 +131,19 @@
|
|
|
94
131
|
"sensitive": true
|
|
95
132
|
},
|
|
96
133
|
"Name": {
|
|
97
|
-
"shape": "
|
|
134
|
+
"shape": "Sp"
|
|
98
135
|
},
|
|
99
136
|
"Metadata": {
|
|
100
137
|
"shape": "S3"
|
|
101
138
|
},
|
|
102
139
|
"ClientRequestToken": {
|
|
103
|
-
"shape": "S4",
|
|
104
140
|
"idempotencyToken": true
|
|
105
141
|
},
|
|
106
142
|
"Tags": {
|
|
107
143
|
"shape": "S5"
|
|
144
|
+
},
|
|
145
|
+
"ExpirationSettings": {
|
|
146
|
+
"shape": "Sq"
|
|
108
147
|
}
|
|
109
148
|
}
|
|
110
149
|
},
|
|
@@ -158,6 +197,25 @@
|
|
|
158
197
|
}
|
|
159
198
|
}
|
|
160
199
|
},
|
|
200
|
+
"DeleteAppInstanceBot": {
|
|
201
|
+
"http": {
|
|
202
|
+
"method": "DELETE",
|
|
203
|
+
"requestUri": "/app-instance-bots/{appInstanceBotArn}",
|
|
204
|
+
"responseCode": 204
|
|
205
|
+
},
|
|
206
|
+
"input": {
|
|
207
|
+
"type": "structure",
|
|
208
|
+
"required": [
|
|
209
|
+
"AppInstanceBotArn"
|
|
210
|
+
],
|
|
211
|
+
"members": {
|
|
212
|
+
"AppInstanceBotArn": {
|
|
213
|
+
"location": "uri",
|
|
214
|
+
"locationName": "appInstanceBotArn"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
161
219
|
"DeleteAppInstanceUser": {
|
|
162
220
|
"http": {
|
|
163
221
|
"method": "DELETE",
|
|
@@ -191,12 +249,12 @@
|
|
|
191
249
|
],
|
|
192
250
|
"members": {
|
|
193
251
|
"AppInstanceUserArn": {
|
|
194
|
-
"shape": "
|
|
252
|
+
"shape": "Sz",
|
|
195
253
|
"location": "uri",
|
|
196
254
|
"locationName": "appInstanceUserArn"
|
|
197
255
|
},
|
|
198
256
|
"EndpointId": {
|
|
199
|
-
"shape": "
|
|
257
|
+
"shape": "S10",
|
|
200
258
|
"location": "uri",
|
|
201
259
|
"locationName": "endpointId"
|
|
202
260
|
}
|
|
@@ -285,6 +343,50 @@
|
|
|
285
343
|
}
|
|
286
344
|
}
|
|
287
345
|
},
|
|
346
|
+
"DescribeAppInstanceBot": {
|
|
347
|
+
"http": {
|
|
348
|
+
"method": "GET",
|
|
349
|
+
"requestUri": "/app-instance-bots/{appInstanceBotArn}"
|
|
350
|
+
},
|
|
351
|
+
"input": {
|
|
352
|
+
"type": "structure",
|
|
353
|
+
"required": [
|
|
354
|
+
"AppInstanceBotArn"
|
|
355
|
+
],
|
|
356
|
+
"members": {
|
|
357
|
+
"AppInstanceBotArn": {
|
|
358
|
+
"location": "uri",
|
|
359
|
+
"locationName": "appInstanceBotArn"
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"output": {
|
|
364
|
+
"type": "structure",
|
|
365
|
+
"members": {
|
|
366
|
+
"AppInstanceBot": {
|
|
367
|
+
"type": "structure",
|
|
368
|
+
"members": {
|
|
369
|
+
"AppInstanceBotArn": {},
|
|
370
|
+
"Name": {
|
|
371
|
+
"shape": "Se"
|
|
372
|
+
},
|
|
373
|
+
"Configuration": {
|
|
374
|
+
"shape": "Sg"
|
|
375
|
+
},
|
|
376
|
+
"CreatedTimestamp": {
|
|
377
|
+
"type": "timestamp"
|
|
378
|
+
},
|
|
379
|
+
"LastUpdatedTimestamp": {
|
|
380
|
+
"type": "timestamp"
|
|
381
|
+
},
|
|
382
|
+
"Metadata": {
|
|
383
|
+
"shape": "S3"
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
},
|
|
288
390
|
"DescribeAppInstanceUser": {
|
|
289
391
|
"http": {
|
|
290
392
|
"method": "GET",
|
|
@@ -310,7 +412,7 @@
|
|
|
310
412
|
"members": {
|
|
311
413
|
"AppInstanceUserArn": {},
|
|
312
414
|
"Name": {
|
|
313
|
-
"shape": "
|
|
415
|
+
"shape": "Sp"
|
|
314
416
|
},
|
|
315
417
|
"Metadata": {
|
|
316
418
|
"shape": "S3"
|
|
@@ -320,6 +422,9 @@
|
|
|
320
422
|
},
|
|
321
423
|
"LastUpdatedTimestamp": {
|
|
322
424
|
"type": "timestamp"
|
|
425
|
+
},
|
|
426
|
+
"ExpirationSettings": {
|
|
427
|
+
"shape": "Sq"
|
|
323
428
|
}
|
|
324
429
|
}
|
|
325
430
|
}
|
|
@@ -340,12 +445,12 @@
|
|
|
340
445
|
],
|
|
341
446
|
"members": {
|
|
342
447
|
"AppInstanceUserArn": {
|
|
343
|
-
"shape": "
|
|
448
|
+
"shape": "S1f",
|
|
344
449
|
"location": "uri",
|
|
345
450
|
"locationName": "appInstanceUserArn"
|
|
346
451
|
},
|
|
347
452
|
"EndpointId": {
|
|
348
|
-
"shape": "
|
|
453
|
+
"shape": "S10",
|
|
349
454
|
"location": "uri",
|
|
350
455
|
"locationName": "endpointId"
|
|
351
456
|
}
|
|
@@ -358,20 +463,18 @@
|
|
|
358
463
|
"type": "structure",
|
|
359
464
|
"members": {
|
|
360
465
|
"AppInstanceUserArn": {
|
|
361
|
-
"shape": "
|
|
466
|
+
"shape": "Sz"
|
|
362
467
|
},
|
|
363
468
|
"EndpointId": {
|
|
364
|
-
"shape": "
|
|
469
|
+
"shape": "S10"
|
|
365
470
|
},
|
|
366
471
|
"Name": {
|
|
367
|
-
"shape": "
|
|
472
|
+
"shape": "S1f"
|
|
368
473
|
},
|
|
369
474
|
"Type": {},
|
|
370
|
-
"ResourceArn": {
|
|
371
|
-
"shape": "Sn"
|
|
372
|
-
},
|
|
475
|
+
"ResourceArn": {},
|
|
373
476
|
"EndpointAttributes": {
|
|
374
|
-
"shape": "
|
|
477
|
+
"shape": "S1j"
|
|
375
478
|
},
|
|
376
479
|
"CreatedTimestamp": {
|
|
377
480
|
"type": "timestamp"
|
|
@@ -381,7 +484,7 @@
|
|
|
381
484
|
},
|
|
382
485
|
"AllowMessages": {},
|
|
383
486
|
"EndpointState": {
|
|
384
|
-
"shape": "
|
|
487
|
+
"shape": "S1m"
|
|
385
488
|
}
|
|
386
489
|
}
|
|
387
490
|
}
|
|
@@ -410,7 +513,7 @@
|
|
|
410
513
|
"type": "structure",
|
|
411
514
|
"members": {
|
|
412
515
|
"AppInstanceRetentionSettings": {
|
|
413
|
-
"shape": "
|
|
516
|
+
"shape": "S1r"
|
|
414
517
|
},
|
|
415
518
|
"InitiateDeletionTimestamp": {
|
|
416
519
|
"type": "timestamp"
|
|
@@ -440,7 +543,7 @@
|
|
|
440
543
|
"type": "integer"
|
|
441
544
|
},
|
|
442
545
|
"NextToken": {
|
|
443
|
-
"shape": "
|
|
546
|
+
"shape": "S1w",
|
|
444
547
|
"location": "querystring",
|
|
445
548
|
"locationName": "next-token"
|
|
446
549
|
}
|
|
@@ -462,7 +565,59 @@
|
|
|
462
565
|
}
|
|
463
566
|
},
|
|
464
567
|
"NextToken": {
|
|
465
|
-
"shape": "
|
|
568
|
+
"shape": "S1w"
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"ListAppInstanceBots": {
|
|
574
|
+
"http": {
|
|
575
|
+
"method": "GET",
|
|
576
|
+
"requestUri": "/app-instance-bots"
|
|
577
|
+
},
|
|
578
|
+
"input": {
|
|
579
|
+
"type": "structure",
|
|
580
|
+
"required": [
|
|
581
|
+
"AppInstanceArn"
|
|
582
|
+
],
|
|
583
|
+
"members": {
|
|
584
|
+
"AppInstanceArn": {
|
|
585
|
+
"location": "querystring",
|
|
586
|
+
"locationName": "app-instance-arn"
|
|
587
|
+
},
|
|
588
|
+
"MaxResults": {
|
|
589
|
+
"location": "querystring",
|
|
590
|
+
"locationName": "max-results",
|
|
591
|
+
"type": "integer"
|
|
592
|
+
},
|
|
593
|
+
"NextToken": {
|
|
594
|
+
"shape": "S1w",
|
|
595
|
+
"location": "querystring",
|
|
596
|
+
"locationName": "next-token"
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"output": {
|
|
601
|
+
"type": "structure",
|
|
602
|
+
"members": {
|
|
603
|
+
"AppInstanceArn": {},
|
|
604
|
+
"AppInstanceBots": {
|
|
605
|
+
"type": "list",
|
|
606
|
+
"member": {
|
|
607
|
+
"type": "structure",
|
|
608
|
+
"members": {
|
|
609
|
+
"AppInstanceBotArn": {},
|
|
610
|
+
"Name": {
|
|
611
|
+
"shape": "Se"
|
|
612
|
+
},
|
|
613
|
+
"Metadata": {
|
|
614
|
+
"shape": "S3"
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"NextToken": {
|
|
620
|
+
"shape": "S1w"
|
|
466
621
|
}
|
|
467
622
|
}
|
|
468
623
|
}
|
|
@@ -480,7 +635,7 @@
|
|
|
480
635
|
],
|
|
481
636
|
"members": {
|
|
482
637
|
"AppInstanceUserArn": {
|
|
483
|
-
"shape": "
|
|
638
|
+
"shape": "Sz",
|
|
484
639
|
"location": "uri",
|
|
485
640
|
"locationName": "appInstanceUserArn"
|
|
486
641
|
},
|
|
@@ -490,7 +645,7 @@
|
|
|
490
645
|
"type": "integer"
|
|
491
646
|
},
|
|
492
647
|
"NextToken": {
|
|
493
|
-
"shape": "
|
|
648
|
+
"shape": "S1w",
|
|
494
649
|
"location": "querystring",
|
|
495
650
|
"locationName": "next-token"
|
|
496
651
|
}
|
|
@@ -505,24 +660,24 @@
|
|
|
505
660
|
"type": "structure",
|
|
506
661
|
"members": {
|
|
507
662
|
"AppInstanceUserArn": {
|
|
508
|
-
"shape": "
|
|
663
|
+
"shape": "Sz"
|
|
509
664
|
},
|
|
510
665
|
"EndpointId": {
|
|
511
|
-
"shape": "
|
|
666
|
+
"shape": "S10"
|
|
512
667
|
},
|
|
513
668
|
"Name": {
|
|
514
|
-
"shape": "
|
|
669
|
+
"shape": "S1f"
|
|
515
670
|
},
|
|
516
671
|
"Type": {},
|
|
517
672
|
"AllowMessages": {},
|
|
518
673
|
"EndpointState": {
|
|
519
|
-
"shape": "
|
|
674
|
+
"shape": "S1m"
|
|
520
675
|
}
|
|
521
676
|
}
|
|
522
677
|
}
|
|
523
678
|
},
|
|
524
679
|
"NextToken": {
|
|
525
|
-
"shape": "
|
|
680
|
+
"shape": "S1w"
|
|
526
681
|
}
|
|
527
682
|
}
|
|
528
683
|
}
|
|
@@ -548,7 +703,7 @@
|
|
|
548
703
|
"type": "integer"
|
|
549
704
|
},
|
|
550
705
|
"NextToken": {
|
|
551
|
-
"shape": "
|
|
706
|
+
"shape": "S1w",
|
|
552
707
|
"location": "querystring",
|
|
553
708
|
"locationName": "next-token"
|
|
554
709
|
}
|
|
@@ -565,7 +720,7 @@
|
|
|
565
720
|
"members": {
|
|
566
721
|
"AppInstanceUserArn": {},
|
|
567
722
|
"Name": {
|
|
568
|
-
"shape": "
|
|
723
|
+
"shape": "Sp"
|
|
569
724
|
},
|
|
570
725
|
"Metadata": {
|
|
571
726
|
"shape": "S3"
|
|
@@ -574,7 +729,7 @@
|
|
|
574
729
|
}
|
|
575
730
|
},
|
|
576
731
|
"NextToken": {
|
|
577
|
-
"shape": "
|
|
732
|
+
"shape": "S1w"
|
|
578
733
|
}
|
|
579
734
|
}
|
|
580
735
|
}
|
|
@@ -593,7 +748,7 @@
|
|
|
593
748
|
"type": "integer"
|
|
594
749
|
},
|
|
595
750
|
"NextToken": {
|
|
596
|
-
"shape": "
|
|
751
|
+
"shape": "S1w",
|
|
597
752
|
"location": "querystring",
|
|
598
753
|
"locationName": "next-token"
|
|
599
754
|
}
|
|
@@ -618,7 +773,7 @@
|
|
|
618
773
|
}
|
|
619
774
|
},
|
|
620
775
|
"NextToken": {
|
|
621
|
-
"shape": "
|
|
776
|
+
"shape": "S1w"
|
|
622
777
|
}
|
|
623
778
|
}
|
|
624
779
|
}
|
|
@@ -668,7 +823,7 @@
|
|
|
668
823
|
"locationName": "appInstanceArn"
|
|
669
824
|
},
|
|
670
825
|
"AppInstanceRetentionSettings": {
|
|
671
|
-
"shape": "
|
|
826
|
+
"shape": "S1r"
|
|
672
827
|
}
|
|
673
828
|
}
|
|
674
829
|
},
|
|
@@ -676,7 +831,7 @@
|
|
|
676
831
|
"type": "structure",
|
|
677
832
|
"members": {
|
|
678
833
|
"AppInstanceRetentionSettings": {
|
|
679
|
-
"shape": "
|
|
834
|
+
"shape": "S1r"
|
|
680
835
|
},
|
|
681
836
|
"InitiateDeletionTimestamp": {
|
|
682
837
|
"type": "timestamp"
|
|
@@ -684,6 +839,37 @@
|
|
|
684
839
|
}
|
|
685
840
|
}
|
|
686
841
|
},
|
|
842
|
+
"PutAppInstanceUserExpirationSettings": {
|
|
843
|
+
"http": {
|
|
844
|
+
"method": "PUT",
|
|
845
|
+
"requestUri": "/app-instance-users/{appInstanceUserArn}/expiration-settings",
|
|
846
|
+
"responseCode": 200
|
|
847
|
+
},
|
|
848
|
+
"input": {
|
|
849
|
+
"type": "structure",
|
|
850
|
+
"required": [
|
|
851
|
+
"AppInstanceUserArn"
|
|
852
|
+
],
|
|
853
|
+
"members": {
|
|
854
|
+
"AppInstanceUserArn": {
|
|
855
|
+
"location": "uri",
|
|
856
|
+
"locationName": "appInstanceUserArn"
|
|
857
|
+
},
|
|
858
|
+
"ExpirationSettings": {
|
|
859
|
+
"shape": "Sq"
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"output": {
|
|
864
|
+
"type": "structure",
|
|
865
|
+
"members": {
|
|
866
|
+
"AppInstanceUserArn": {},
|
|
867
|
+
"ExpirationSettings": {
|
|
868
|
+
"shape": "Sq"
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
},
|
|
687
873
|
"RegisterAppInstanceUserEndpoint": {
|
|
688
874
|
"http": {
|
|
689
875
|
"requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints",
|
|
@@ -700,22 +886,19 @@
|
|
|
700
886
|
],
|
|
701
887
|
"members": {
|
|
702
888
|
"AppInstanceUserArn": {
|
|
703
|
-
"shape": "
|
|
889
|
+
"shape": "Sz",
|
|
704
890
|
"location": "uri",
|
|
705
891
|
"locationName": "appInstanceUserArn"
|
|
706
892
|
},
|
|
707
893
|
"Name": {
|
|
708
|
-
"shape": "
|
|
894
|
+
"shape": "S1f"
|
|
709
895
|
},
|
|
710
896
|
"Type": {},
|
|
711
|
-
"ResourceArn": {
|
|
712
|
-
"shape": "Sn"
|
|
713
|
-
},
|
|
897
|
+
"ResourceArn": {},
|
|
714
898
|
"EndpointAttributes": {
|
|
715
|
-
"shape": "
|
|
899
|
+
"shape": "S1j"
|
|
716
900
|
},
|
|
717
901
|
"ClientRequestToken": {
|
|
718
|
-
"shape": "S4",
|
|
719
902
|
"idempotencyToken": true
|
|
720
903
|
},
|
|
721
904
|
"AllowMessages": {}
|
|
@@ -725,10 +908,10 @@
|
|
|
725
908
|
"type": "structure",
|
|
726
909
|
"members": {
|
|
727
910
|
"AppInstanceUserArn": {
|
|
728
|
-
"shape": "
|
|
911
|
+
"shape": "Sz"
|
|
729
912
|
},
|
|
730
913
|
"EndpointId": {
|
|
731
|
-
"shape": "
|
|
914
|
+
"shape": "S10"
|
|
732
915
|
}
|
|
733
916
|
}
|
|
734
917
|
}
|
|
@@ -807,6 +990,39 @@
|
|
|
807
990
|
}
|
|
808
991
|
}
|
|
809
992
|
},
|
|
993
|
+
"UpdateAppInstanceBot": {
|
|
994
|
+
"http": {
|
|
995
|
+
"method": "PUT",
|
|
996
|
+
"requestUri": "/app-instance-bots/{appInstanceBotArn}",
|
|
997
|
+
"responseCode": 200
|
|
998
|
+
},
|
|
999
|
+
"input": {
|
|
1000
|
+
"type": "structure",
|
|
1001
|
+
"required": [
|
|
1002
|
+
"AppInstanceBotArn",
|
|
1003
|
+
"Name",
|
|
1004
|
+
"Metadata"
|
|
1005
|
+
],
|
|
1006
|
+
"members": {
|
|
1007
|
+
"AppInstanceBotArn": {
|
|
1008
|
+
"location": "uri",
|
|
1009
|
+
"locationName": "appInstanceBotArn"
|
|
1010
|
+
},
|
|
1011
|
+
"Name": {
|
|
1012
|
+
"shape": "Se"
|
|
1013
|
+
},
|
|
1014
|
+
"Metadata": {
|
|
1015
|
+
"shape": "S3"
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"output": {
|
|
1020
|
+
"type": "structure",
|
|
1021
|
+
"members": {
|
|
1022
|
+
"AppInstanceBotArn": {}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
810
1026
|
"UpdateAppInstanceUser": {
|
|
811
1027
|
"http": {
|
|
812
1028
|
"method": "PUT",
|
|
@@ -826,7 +1042,7 @@
|
|
|
826
1042
|
"locationName": "appInstanceUserArn"
|
|
827
1043
|
},
|
|
828
1044
|
"Name": {
|
|
829
|
-
"shape": "
|
|
1045
|
+
"shape": "Sp"
|
|
830
1046
|
},
|
|
831
1047
|
"Metadata": {
|
|
832
1048
|
"shape": "S3"
|
|
@@ -854,17 +1070,17 @@
|
|
|
854
1070
|
],
|
|
855
1071
|
"members": {
|
|
856
1072
|
"AppInstanceUserArn": {
|
|
857
|
-
"shape": "
|
|
1073
|
+
"shape": "Sz",
|
|
858
1074
|
"location": "uri",
|
|
859
1075
|
"locationName": "appInstanceUserArn"
|
|
860
1076
|
},
|
|
861
1077
|
"EndpointId": {
|
|
862
|
-
"shape": "
|
|
1078
|
+
"shape": "S10",
|
|
863
1079
|
"location": "uri",
|
|
864
1080
|
"locationName": "endpointId"
|
|
865
1081
|
},
|
|
866
1082
|
"Name": {
|
|
867
|
-
"shape": "
|
|
1083
|
+
"shape": "S1f"
|
|
868
1084
|
},
|
|
869
1085
|
"AllowMessages": {}
|
|
870
1086
|
}
|
|
@@ -873,10 +1089,10 @@
|
|
|
873
1089
|
"type": "structure",
|
|
874
1090
|
"members": {
|
|
875
1091
|
"AppInstanceUserArn": {
|
|
876
|
-
"shape": "
|
|
1092
|
+
"shape": "Sz"
|
|
877
1093
|
},
|
|
878
1094
|
"EndpointId": {
|
|
879
|
-
"shape": "
|
|
1095
|
+
"shape": "S10"
|
|
880
1096
|
}
|
|
881
1097
|
}
|
|
882
1098
|
}
|
|
@@ -891,10 +1107,6 @@
|
|
|
891
1107
|
"type": "string",
|
|
892
1108
|
"sensitive": true
|
|
893
1109
|
},
|
|
894
|
-
"S4": {
|
|
895
|
-
"type": "string",
|
|
896
|
-
"sensitive": true
|
|
897
|
-
},
|
|
898
1110
|
"S5": {
|
|
899
1111
|
"type": "list",
|
|
900
1112
|
"member": {
|
|
@@ -923,20 +1135,54 @@
|
|
|
923
1135
|
"members": {
|
|
924
1136
|
"Arn": {},
|
|
925
1137
|
"Name": {
|
|
926
|
-
"
|
|
927
|
-
"sensitive": true
|
|
1138
|
+
"shape": "Se"
|
|
928
1139
|
}
|
|
929
1140
|
}
|
|
930
1141
|
},
|
|
931
|
-
"
|
|
1142
|
+
"Se": {
|
|
932
1143
|
"type": "string",
|
|
933
1144
|
"sensitive": true
|
|
934
1145
|
},
|
|
935
|
-
"
|
|
1146
|
+
"Sg": {
|
|
1147
|
+
"type": "structure",
|
|
1148
|
+
"required": [
|
|
1149
|
+
"Lex"
|
|
1150
|
+
],
|
|
1151
|
+
"members": {
|
|
1152
|
+
"Lex": {
|
|
1153
|
+
"type": "structure",
|
|
1154
|
+
"required": [
|
|
1155
|
+
"RespondsTo",
|
|
1156
|
+
"LexBotAliasArn",
|
|
1157
|
+
"LocaleId"
|
|
1158
|
+
],
|
|
1159
|
+
"members": {
|
|
1160
|
+
"RespondsTo": {},
|
|
1161
|
+
"LexBotAliasArn": {},
|
|
1162
|
+
"LocaleId": {},
|
|
1163
|
+
"WelcomeIntent": {}
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
"Sp": {
|
|
936
1169
|
"type": "string",
|
|
937
1170
|
"sensitive": true
|
|
938
1171
|
},
|
|
939
|
-
"
|
|
1172
|
+
"Sq": {
|
|
1173
|
+
"type": "structure",
|
|
1174
|
+
"required": [
|
|
1175
|
+
"ExpirationDays",
|
|
1176
|
+
"ExpirationCriterion"
|
|
1177
|
+
],
|
|
1178
|
+
"members": {
|
|
1179
|
+
"ExpirationDays": {
|
|
1180
|
+
"type": "integer"
|
|
1181
|
+
},
|
|
1182
|
+
"ExpirationCriterion": {}
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"Sz": {
|
|
940
1186
|
"type": "string",
|
|
941
1187
|
"sensitive": true
|
|
942
1188
|
},
|
|
@@ -944,25 +1190,29 @@
|
|
|
944
1190
|
"type": "string",
|
|
945
1191
|
"sensitive": true
|
|
946
1192
|
},
|
|
947
|
-
"
|
|
1193
|
+
"S1f": {
|
|
1194
|
+
"type": "string",
|
|
1195
|
+
"sensitive": true
|
|
1196
|
+
},
|
|
1197
|
+
"S1j": {
|
|
948
1198
|
"type": "structure",
|
|
949
1199
|
"required": [
|
|
950
1200
|
"DeviceToken"
|
|
951
1201
|
],
|
|
952
1202
|
"members": {
|
|
953
1203
|
"DeviceToken": {
|
|
954
|
-
"shape": "
|
|
1204
|
+
"shape": "S1k"
|
|
955
1205
|
},
|
|
956
1206
|
"VoipDeviceToken": {
|
|
957
|
-
"shape": "
|
|
1207
|
+
"shape": "S1k"
|
|
958
1208
|
}
|
|
959
1209
|
}
|
|
960
1210
|
},
|
|
961
|
-
"
|
|
1211
|
+
"S1k": {
|
|
962
1212
|
"type": "string",
|
|
963
1213
|
"sensitive": true
|
|
964
1214
|
},
|
|
965
|
-
"
|
|
1215
|
+
"S1m": {
|
|
966
1216
|
"type": "structure",
|
|
967
1217
|
"required": [
|
|
968
1218
|
"Status"
|
|
@@ -972,7 +1222,7 @@
|
|
|
972
1222
|
"StatusReason": {}
|
|
973
1223
|
}
|
|
974
1224
|
},
|
|
975
|
-
"
|
|
1225
|
+
"S1r": {
|
|
976
1226
|
"type": "structure",
|
|
977
1227
|
"members": {
|
|
978
1228
|
"ChannelRetentionSettings": {
|
|
@@ -985,7 +1235,7 @@
|
|
|
985
1235
|
}
|
|
986
1236
|
}
|
|
987
1237
|
},
|
|
988
|
-
"
|
|
1238
|
+
"S1w": {
|
|
989
1239
|
"type": "string",
|
|
990
1240
|
"sensitive": true
|
|
991
1241
|
}
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"output_token": "NextToken",
|
|
6
6
|
"limit_key": "MaxResults"
|
|
7
7
|
},
|
|
8
|
+
"ListAppInstanceBots": {
|
|
9
|
+
"input_token": "NextToken",
|
|
10
|
+
"output_token": "NextToken",
|
|
11
|
+
"limit_key": "MaxResults"
|
|
12
|
+
},
|
|
8
13
|
"ListAppInstanceUserEndpoints": {
|
|
9
14
|
"input_token": "NextToken",
|
|
10
15
|
"output_token": "NextToken",
|