aws-sdk-core 2.11.380 → 2.11.381

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ebcc17e112c12f2337ab1f11c5da8f8dc4a709b
4
- data.tar.gz: a4d347aa045797363287d74657a1eeab2f15bdc6
3
+ metadata.gz: 3e3f3f9cb012618e9af42dfb12c70aac409c8003
4
+ data.tar.gz: 8dbb9f280cd0d4b5200fba557e29247cd0c30e35
5
5
  SHA512:
6
- metadata.gz: 5c6ca4f368e61b8081591311855f06989cb9a2852879f7054175ddf4c4ed02b675964793a5ccb1e0e536f7b15d97bcc80423ce881260d2026ee8ce97436388a7
7
- data.tar.gz: 944eeca0a18931860d4081bc5406c331a150fe982527a642ac9e49adc069e67e2191069388e1d37f65d2bbd5e15f45b383f15e29351ee7ca8ebb9293474f1f01
6
+ metadata.gz: 48b15f2eb099d8797dbd63d5c6e1953b0edf67548286328ecb960b49dd1cda660ad775b0dce62ba96041f6cabc556791634f9670defda052a784dbbc1760f0f2
7
+ data.tar.gz: 07740c98d9e0979c29a16a036a8e5e0d8d08a3d2bb08e19dd3df8ae0ec0955ead2d25c34a445f0bda5db5978e062afb15b0b79383c1b3a132b8f3c351c17b2d6
@@ -1185,6 +1185,30 @@
1185
1185
  "min": 0,
1186
1186
  "max": 50
1187
1187
  },
1188
+ "GrpcRetryPolicy": {
1189
+ "type": "structure",
1190
+ "required": [
1191
+ "maxRetries",
1192
+ "perRetryTimeout"
1193
+ ],
1194
+ "members": {
1195
+ "grpcRetryEvents": {
1196
+ "shape": "GrpcRetryPolicyEvents"
1197
+ },
1198
+ "httpRetryEvents": {
1199
+ "shape": "HttpRetryPolicyEvents"
1200
+ },
1201
+ "maxRetries": {
1202
+ "shape": "MaxRetries"
1203
+ },
1204
+ "perRetryTimeout": {
1205
+ "shape": "Duration"
1206
+ },
1207
+ "tcpRetryEvents": {
1208
+ "shape": "TcpRetryPolicyEvents"
1209
+ }
1210
+ }
1211
+ },
1188
1212
  "ListTagsForResourceInput": {
1189
1213
  "type": "structure",
1190
1214
  "required": [
@@ -1228,6 +1252,14 @@
1228
1252
  }
1229
1253
  }
1230
1254
  },
1255
+ "GrpcRetryPolicyEvents": {
1256
+ "type": "list",
1257
+ "member": {
1258
+ "shape": "GrpcRetryPolicyEvent"
1259
+ },
1260
+ "min": 1,
1261
+ "max": 5
1262
+ },
1231
1263
  "ServiceUnavailableException": {
1232
1264
  "type": "structure",
1233
1265
  "members": {
@@ -1400,7 +1432,9 @@
1400
1432
  "PortProtocol": {
1401
1433
  "type": "string",
1402
1434
  "enum": [
1435
+ "grpc",
1403
1436
  "http",
1437
+ "http2",
1404
1438
  "tcp"
1405
1439
  ]
1406
1440
  },
@@ -1515,6 +1549,19 @@
1515
1549
  "min": 0,
1516
1550
  "max": 100
1517
1551
  },
1552
+ "GrpcRouteMetadataList": {
1553
+ "type": "list",
1554
+ "member": {
1555
+ "shape": "GrpcRouteMetadata"
1556
+ },
1557
+ "min": 1,
1558
+ "max": 10
1559
+ },
1560
+ "MethodName": {
1561
+ "type": "string",
1562
+ "min": 1,
1563
+ "max": 50
1564
+ },
1518
1565
  "TagValue": {
1519
1566
  "type": "string",
1520
1567
  "min": 0,
@@ -1775,6 +1822,17 @@
1775
1822
  }
1776
1823
  }
1777
1824
  },
1825
+ "GrpcRouteAction": {
1826
+ "type": "structure",
1827
+ "required": [
1828
+ "weightedTargets"
1829
+ ],
1830
+ "members": {
1831
+ "weightedTargets": {
1832
+ "shape": "WeightedTargets"
1833
+ }
1834
+ }
1835
+ },
1778
1836
  "DescribeVirtualNodeOutput": {
1779
1837
  "type": "structure",
1780
1838
  "required": [
@@ -1831,6 +1889,26 @@
1831
1889
  },
1832
1890
  "payload": "route"
1833
1891
  },
1892
+ "GrpcRouteMetadataMatchMethod": {
1893
+ "type": "structure",
1894
+ "members": {
1895
+ "exact": {
1896
+ "shape": "HeaderMatch"
1897
+ },
1898
+ "prefix": {
1899
+ "shape": "HeaderMatch"
1900
+ },
1901
+ "range": {
1902
+ "shape": "MatchRange"
1903
+ },
1904
+ "regex": {
1905
+ "shape": "HeaderMatch"
1906
+ },
1907
+ "suffix": {
1908
+ "shape": "HeaderMatch"
1909
+ }
1910
+ }
1911
+ },
1834
1912
  "DnsServiceDiscovery": {
1835
1913
  "type": "structure",
1836
1914
  "required": [
@@ -2627,6 +2705,24 @@
2627
2705
  }
2628
2706
  }
2629
2707
  },
2708
+ "GrpcRoute": {
2709
+ "type": "structure",
2710
+ "required": [
2711
+ "action",
2712
+ "match"
2713
+ ],
2714
+ "members": {
2715
+ "action": {
2716
+ "shape": "GrpcRouteAction"
2717
+ },
2718
+ "match": {
2719
+ "shape": "GrpcRouteMatch"
2720
+ },
2721
+ "retryPolicy": {
2722
+ "shape": "GrpcRetryPolicy"
2723
+ }
2724
+ }
2725
+ },
2630
2726
  "DeleteVirtualNodeInput": {
2631
2727
  "type": "structure",
2632
2728
  "required": [
@@ -2741,6 +2837,16 @@
2741
2837
  "min": 0,
2742
2838
  "max": 50
2743
2839
  },
2840
+ "GrpcRetryPolicyEvent": {
2841
+ "type": "string",
2842
+ "enum": [
2843
+ "cancelled",
2844
+ "deadline-exceeded",
2845
+ "internal",
2846
+ "resource-exhausted",
2847
+ "unavailable"
2848
+ ]
2849
+ },
2744
2850
  "HttpRetryPolicy": {
2745
2851
  "type": "structure",
2746
2852
  "required": [
@@ -2888,6 +2994,23 @@
2888
2994
  }
2889
2995
  }
2890
2996
  },
2997
+ "GrpcRouteMetadata": {
2998
+ "type": "structure",
2999
+ "required": [
3000
+ "name"
3001
+ ],
3002
+ "members": {
3003
+ "invert": {
3004
+ "shape": "Boolean"
3005
+ },
3006
+ "match": {
3007
+ "shape": "GrpcRouteMetadataMatchMethod"
3008
+ },
3009
+ "name": {
3010
+ "shape": "HeaderName"
3011
+ }
3012
+ }
3013
+ },
2891
3014
  "CreateRouteInput": {
2892
3015
  "type": "structure",
2893
3016
  "required": [
@@ -2949,6 +3072,20 @@
2949
3072
  }
2950
3073
  }
2951
3074
  },
3075
+ "GrpcRouteMatch": {
3076
+ "type": "structure",
3077
+ "members": {
3078
+ "metadata": {
3079
+ "shape": "GrpcRouteMetadataList"
3080
+ },
3081
+ "methodName": {
3082
+ "shape": "MethodName"
3083
+ },
3084
+ "serviceName": {
3085
+ "shape": "ServiceName"
3086
+ }
3087
+ }
3088
+ },
2952
3089
  "String": {
2953
3090
  "type": "string"
2954
3091
  },
@@ -3075,6 +3212,12 @@
3075
3212
  "RouteSpec": {
3076
3213
  "type": "structure",
3077
3214
  "members": {
3215
+ "grpcRoute": {
3216
+ "shape": "GrpcRoute"
3217
+ },
3218
+ "http2Route": {
3219
+ "shape": "HttpRoute"
3220
+ },
3078
3221
  "httpRoute": {
3079
3222
  "shape": "HttpRoute"
3080
3223
  },
@@ -24,6 +24,7 @@
24
24
  {"shape":"NotFoundException"},
25
25
  {"shape":"ForbiddenException"},
26
26
  {"shape":"BadRequestException"},
27
+ {"shape":"AccessDeniedException"},
27
28
  {"shape":"ThrottledClientException"},
28
29
  {"shape":"ServiceUnavailableException"},
29
30
  {"shape":"ServiceFailureException"}
@@ -43,6 +44,27 @@
43
44
  {"shape":"NotFoundException"},
44
45
  {"shape":"ForbiddenException"},
45
46
  {"shape":"BadRequestException"},
47
+ {"shape":"AccessDeniedException"},
48
+ {"shape":"ThrottledClientException"},
49
+ {"shape":"ServiceUnavailableException"},
50
+ {"shape":"ServiceFailureException"}
51
+ ]
52
+ },
53
+ "AssociatePhoneNumbersWithVoiceConnectorGroup":{
54
+ "name":"AssociatePhoneNumbersWithVoiceConnectorGroup",
55
+ "http":{
56
+ "method":"POST",
57
+ "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=associate-phone-numbers",
58
+ "responseCode":200
59
+ },
60
+ "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupRequest"},
61
+ "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupResponse"},
62
+ "errors":[
63
+ {"shape":"UnauthorizedClientException"},
64
+ {"shape":"NotFoundException"},
65
+ {"shape":"ForbiddenException"},
66
+ {"shape":"BadRequestException"},
67
+ {"shape":"AccessDeniedException"},
46
68
  {"shape":"ThrottledClientException"},
47
69
  {"shape":"ServiceUnavailableException"},
48
70
  {"shape":"ServiceFailureException"}
@@ -191,10 +213,12 @@
191
213
  "input":{"shape":"CreatePhoneNumberOrderRequest"},
192
214
  "output":{"shape":"CreatePhoneNumberOrderResponse"},
193
215
  "errors":[
194
- {"shape":"UnauthorizedClientException"},
195
- {"shape":"ForbiddenException"},
196
216
  {"shape":"BadRequestException"},
217
+ {"shape":"ForbiddenException"},
218
+ {"shape":"AccessDeniedException"},
219
+ {"shape":"UnauthorizedClientException"},
197
220
  {"shape":"ThrottledClientException"},
221
+ {"shape":"ResourceLimitExceededException"},
198
222
  {"shape":"ServiceUnavailableException"},
199
223
  {"shape":"ServiceFailureException"}
200
224
  ]
@@ -209,10 +233,32 @@
209
233
  "input":{"shape":"CreateVoiceConnectorRequest"},
210
234
  "output":{"shape":"CreateVoiceConnectorResponse"},
211
235
  "errors":[
212
- {"shape":"UnauthorizedClientException"},
236
+ {"shape":"BadRequestException"},
213
237
  {"shape":"ForbiddenException"},
238
+ {"shape":"AccessDeniedException"},
239
+ {"shape":"UnauthorizedClientException"},
240
+ {"shape":"ThrottledClientException"},
241
+ {"shape":"ResourceLimitExceededException"},
242
+ {"shape":"ServiceUnavailableException"},
243
+ {"shape":"ServiceFailureException"}
244
+ ]
245
+ },
246
+ "CreateVoiceConnectorGroup":{
247
+ "name":"CreateVoiceConnectorGroup",
248
+ "http":{
249
+ "method":"POST",
250
+ "requestUri":"/voice-connector-groups",
251
+ "responseCode":201
252
+ },
253
+ "input":{"shape":"CreateVoiceConnectorGroupRequest"},
254
+ "output":{"shape":"CreateVoiceConnectorGroupResponse"},
255
+ "errors":[
214
256
  {"shape":"BadRequestException"},
257
+ {"shape":"ForbiddenException"},
258
+ {"shape":"AccessDeniedException"},
259
+ {"shape":"UnauthorizedClientException"},
215
260
  {"shape":"ThrottledClientException"},
261
+ {"shape":"ResourceLimitExceededException"},
216
262
  {"shape":"ServiceUnavailableException"},
217
263
  {"shape":"ServiceFailureException"}
218
264
  ]
@@ -285,6 +331,26 @@
285
331
  {"shape":"NotFoundException"},
286
332
  {"shape":"ForbiddenException"},
287
333
  {"shape":"BadRequestException"},
334
+ {"shape":"ConflictException"},
335
+ {"shape":"ThrottledClientException"},
336
+ {"shape":"ServiceUnavailableException"},
337
+ {"shape":"ServiceFailureException"}
338
+ ]
339
+ },
340
+ "DeleteVoiceConnectorGroup":{
341
+ "name":"DeleteVoiceConnectorGroup",
342
+ "http":{
343
+ "method":"DELETE",
344
+ "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
345
+ "responseCode":204
346
+ },
347
+ "input":{"shape":"DeleteVoiceConnectorGroupRequest"},
348
+ "errors":[
349
+ {"shape":"UnauthorizedClientException"},
350
+ {"shape":"NotFoundException"},
351
+ {"shape":"ForbiddenException"},
352
+ {"shape":"BadRequestException"},
353
+ {"shape":"ConflictException"},
288
354
  {"shape":"ThrottledClientException"},
289
355
  {"shape":"ServiceUnavailableException"},
290
356
  {"shape":"ServiceFailureException"}
@@ -308,6 +374,24 @@
308
374
  {"shape":"ServiceFailureException"}
309
375
  ]
310
376
  },
377
+ "DeleteVoiceConnectorStreamingConfiguration":{
378
+ "name":"DeleteVoiceConnectorStreamingConfiguration",
379
+ "http":{
380
+ "method":"DELETE",
381
+ "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
382
+ "responseCode":204
383
+ },
384
+ "input":{"shape":"DeleteVoiceConnectorStreamingConfigurationRequest"},
385
+ "errors":[
386
+ {"shape":"UnauthorizedClientException"},
387
+ {"shape":"NotFoundException"},
388
+ {"shape":"ForbiddenException"},
389
+ {"shape":"BadRequestException"},
390
+ {"shape":"ThrottledClientException"},
391
+ {"shape":"ServiceUnavailableException"},
392
+ {"shape":"ServiceFailureException"}
393
+ ]
394
+ },
311
395
  "DeleteVoiceConnectorTermination":{
312
396
  "name":"DeleteVoiceConnectorTermination",
313
397
  "http":{
@@ -382,6 +466,25 @@
382
466
  {"shape":"ServiceFailureException"}
383
467
  ]
384
468
  },
469
+ "DisassociatePhoneNumbersFromVoiceConnectorGroup":{
470
+ "name":"DisassociatePhoneNumbersFromVoiceConnectorGroup",
471
+ "http":{
472
+ "method":"POST",
473
+ "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers",
474
+ "responseCode":200
475
+ },
476
+ "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupRequest"},
477
+ "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupResponse"},
478
+ "errors":[
479
+ {"shape":"UnauthorizedClientException"},
480
+ {"shape":"NotFoundException"},
481
+ {"shape":"ForbiddenException"},
482
+ {"shape":"BadRequestException"},
483
+ {"shape":"ThrottledClientException"},
484
+ {"shape":"ServiceUnavailableException"},
485
+ {"shape":"ServiceFailureException"}
486
+ ]
487
+ },
385
488
  "GetAccount":{
386
489
  "name":"GetAccount",
387
490
  "http":{
@@ -509,6 +612,23 @@
509
612
  {"shape":"ServiceFailureException"}
510
613
  ]
511
614
  },
615
+ "GetPhoneNumberSettings":{
616
+ "name":"GetPhoneNumberSettings",
617
+ "http":{
618
+ "method":"GET",
619
+ "requestUri":"/settings/phone-number",
620
+ "responseCode":200
621
+ },
622
+ "output":{"shape":"GetPhoneNumberSettingsResponse"},
623
+ "errors":[
624
+ {"shape":"UnauthorizedClientException"},
625
+ {"shape":"ForbiddenException"},
626
+ {"shape":"BadRequestException"},
627
+ {"shape":"ThrottledClientException"},
628
+ {"shape":"ServiceUnavailableException"},
629
+ {"shape":"ServiceFailureException"}
630
+ ]
631
+ },
512
632
  "GetUser":{
513
633
  "name":"GetUser",
514
634
  "http":{
@@ -566,6 +686,44 @@
566
686
  {"shape":"ServiceFailureException"}
567
687
  ]
568
688
  },
689
+ "GetVoiceConnectorGroup":{
690
+ "name":"GetVoiceConnectorGroup",
691
+ "http":{
692
+ "method":"GET",
693
+ "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
694
+ "responseCode":200
695
+ },
696
+ "input":{"shape":"GetVoiceConnectorGroupRequest"},
697
+ "output":{"shape":"GetVoiceConnectorGroupResponse"},
698
+ "errors":[
699
+ {"shape":"UnauthorizedClientException"},
700
+ {"shape":"NotFoundException"},
701
+ {"shape":"ForbiddenException"},
702
+ {"shape":"BadRequestException"},
703
+ {"shape":"ThrottledClientException"},
704
+ {"shape":"ServiceUnavailableException"},
705
+ {"shape":"ServiceFailureException"}
706
+ ]
707
+ },
708
+ "GetVoiceConnectorLoggingConfiguration":{
709
+ "name":"GetVoiceConnectorLoggingConfiguration",
710
+ "http":{
711
+ "method":"GET",
712
+ "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
713
+ "responseCode":200
714
+ },
715
+ "input":{"shape":"GetVoiceConnectorLoggingConfigurationRequest"},
716
+ "output":{"shape":"GetVoiceConnectorLoggingConfigurationResponse"},
717
+ "errors":[
718
+ {"shape":"UnauthorizedClientException"},
719
+ {"shape":"NotFoundException"},
720
+ {"shape":"ForbiddenException"},
721
+ {"shape":"BadRequestException"},
722
+ {"shape":"ThrottledClientException"},
723
+ {"shape":"ServiceUnavailableException"},
724
+ {"shape":"ServiceFailureException"}
725
+ ]
726
+ },
569
727
  "GetVoiceConnectorOrigination":{
570
728
  "name":"GetVoiceConnectorOrigination",
571
729
  "http":{
@@ -585,6 +743,25 @@
585
743
  {"shape":"ServiceFailureException"}
586
744
  ]
587
745
  },
746
+ "GetVoiceConnectorStreamingConfiguration":{
747
+ "name":"GetVoiceConnectorStreamingConfiguration",
748
+ "http":{
749
+ "method":"GET",
750
+ "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
751
+ "responseCode":200
752
+ },
753
+ "input":{"shape":"GetVoiceConnectorStreamingConfigurationRequest"},
754
+ "output":{"shape":"GetVoiceConnectorStreamingConfigurationResponse"},
755
+ "errors":[
756
+ {"shape":"UnauthorizedClientException"},
757
+ {"shape":"NotFoundException"},
758
+ {"shape":"ForbiddenException"},
759
+ {"shape":"BadRequestException"},
760
+ {"shape":"ThrottledClientException"},
761
+ {"shape":"ServiceUnavailableException"},
762
+ {"shape":"ServiceFailureException"}
763
+ ]
764
+ },
588
765
  "GetVoiceConnectorTermination":{
589
766
  "name":"GetVoiceConnectorTermination",
590
767
  "http":{
@@ -732,6 +909,24 @@
732
909
  {"shape":"ServiceFailureException"}
733
910
  ]
734
911
  },
912
+ "ListVoiceConnectorGroups":{
913
+ "name":"ListVoiceConnectorGroups",
914
+ "http":{
915
+ "method":"GET",
916
+ "requestUri":"/voice-connector-groups",
917
+ "responseCode":200
918
+ },
919
+ "input":{"shape":"ListVoiceConnectorGroupsRequest"},
920
+ "output":{"shape":"ListVoiceConnectorGroupsResponse"},
921
+ "errors":[
922
+ {"shape":"UnauthorizedClientException"},
923
+ {"shape":"ForbiddenException"},
924
+ {"shape":"BadRequestException"},
925
+ {"shape":"ThrottledClientException"},
926
+ {"shape":"ServiceUnavailableException"},
927
+ {"shape":"ServiceFailureException"}
928
+ ]
929
+ },
735
930
  "ListVoiceConnectorTerminationCredentials":{
736
931
  "name":"ListVoiceConnectorTerminationCredentials",
737
932
  "http":{
@@ -807,6 +1002,25 @@
807
1002
  {"shape":"NotFoundException"}
808
1003
  ]
809
1004
  },
1005
+ "PutVoiceConnectorLoggingConfiguration":{
1006
+ "name":"PutVoiceConnectorLoggingConfiguration",
1007
+ "http":{
1008
+ "method":"PUT",
1009
+ "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
1010
+ "responseCode":200
1011
+ },
1012
+ "input":{"shape":"PutVoiceConnectorLoggingConfigurationRequest"},
1013
+ "output":{"shape":"PutVoiceConnectorLoggingConfigurationResponse"},
1014
+ "errors":[
1015
+ {"shape":"UnauthorizedClientException"},
1016
+ {"shape":"NotFoundException"},
1017
+ {"shape":"ForbiddenException"},
1018
+ {"shape":"BadRequestException"},
1019
+ {"shape":"ThrottledClientException"},
1020
+ {"shape":"ServiceUnavailableException"},
1021
+ {"shape":"ServiceFailureException"}
1022
+ ]
1023
+ },
810
1024
  "PutVoiceConnectorOrigination":{
811
1025
  "name":"PutVoiceConnectorOrigination",
812
1026
  "http":{
@@ -826,6 +1040,25 @@
826
1040
  {"shape":"ServiceFailureException"}
827
1041
  ]
828
1042
  },
1043
+ "PutVoiceConnectorStreamingConfiguration":{
1044
+ "name":"PutVoiceConnectorStreamingConfiguration",
1045
+ "http":{
1046
+ "method":"PUT",
1047
+ "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
1048
+ "responseCode":200
1049
+ },
1050
+ "input":{"shape":"PutVoiceConnectorStreamingConfigurationRequest"},
1051
+ "output":{"shape":"PutVoiceConnectorStreamingConfigurationResponse"},
1052
+ "errors":[
1053
+ {"shape":"UnauthorizedClientException"},
1054
+ {"shape":"NotFoundException"},
1055
+ {"shape":"ForbiddenException"},
1056
+ {"shape":"BadRequestException"},
1057
+ {"shape":"ThrottledClientException"},
1058
+ {"shape":"ServiceUnavailableException"},
1059
+ {"shape":"ServiceFailureException"}
1060
+ ]
1061
+ },
829
1062
  "PutVoiceConnectorTermination":{
830
1063
  "name":"PutVoiceConnectorTermination",
831
1064
  "http":{
@@ -840,6 +1073,7 @@
840
1073
  {"shape":"NotFoundException"},
841
1074
  {"shape":"ForbiddenException"},
842
1075
  {"shape":"BadRequestException"},
1076
+ {"shape":"AccessDeniedException"},
843
1077
  {"shape":"ThrottledClientException"},
844
1078
  {"shape":"ServiceUnavailableException"},
845
1079
  {"shape":"ServiceFailureException"}
@@ -915,6 +1149,7 @@
915
1149
  {"shape":"ForbiddenException"},
916
1150
  {"shape":"BadRequestException"},
917
1151
  {"shape":"ThrottledClientException"},
1152
+ {"shape":"ResourceLimitExceededException"},
918
1153
  {"shape":"ServiceUnavailableException"},
919
1154
  {"shape":"ServiceFailureException"}
920
1155
  ]
@@ -928,9 +1163,10 @@
928
1163
  "input":{"shape":"SearchAvailablePhoneNumbersRequest"},
929
1164
  "output":{"shape":"SearchAvailablePhoneNumbersResponse"},
930
1165
  "errors":[
931
- {"shape":"UnauthorizedClientException"},
932
- {"shape":"ForbiddenException"},
933
1166
  {"shape":"BadRequestException"},
1167
+ {"shape":"ForbiddenException"},
1168
+ {"shape":"AccessDeniedException"},
1169
+ {"shape":"UnauthorizedClientException"},
934
1170
  {"shape":"ThrottledClientException"},
935
1171
  {"shape":"ServiceUnavailableException"},
936
1172
  {"shape":"ServiceFailureException"}
@@ -1029,6 +1265,23 @@
1029
1265
  {"shape":"ServiceFailureException"}
1030
1266
  ]
1031
1267
  },
1268
+ "UpdatePhoneNumberSettings":{
1269
+ "name":"UpdatePhoneNumberSettings",
1270
+ "http":{
1271
+ "method":"PUT",
1272
+ "requestUri":"/settings/phone-number",
1273
+ "responseCode":204
1274
+ },
1275
+ "input":{"shape":"UpdatePhoneNumberSettingsRequest"},
1276
+ "errors":[
1277
+ {"shape":"UnauthorizedClientException"},
1278
+ {"shape":"ForbiddenException"},
1279
+ {"shape":"BadRequestException"},
1280
+ {"shape":"ThrottledClientException"},
1281
+ {"shape":"ServiceUnavailableException"},
1282
+ {"shape":"ServiceFailureException"}
1283
+ ]
1284
+ },
1032
1285
  "UpdateUser":{
1033
1286
  "name":"UpdateUser",
1034
1287
  "http":{
@@ -1084,9 +1337,38 @@
1084
1337
  {"shape":"ServiceUnavailableException"},
1085
1338
  {"shape":"ServiceFailureException"}
1086
1339
  ]
1340
+ },
1341
+ "UpdateVoiceConnectorGroup":{
1342
+ "name":"UpdateVoiceConnectorGroup",
1343
+ "http":{
1344
+ "method":"PUT",
1345
+ "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
1346
+ "responseCode":202
1347
+ },
1348
+ "input":{"shape":"UpdateVoiceConnectorGroupRequest"},
1349
+ "output":{"shape":"UpdateVoiceConnectorGroupResponse"},
1350
+ "errors":[
1351
+ {"shape":"UnauthorizedClientException"},
1352
+ {"shape":"NotFoundException"},
1353
+ {"shape":"ForbiddenException"},
1354
+ {"shape":"BadRequestException"},
1355
+ {"shape":"ConflictException"},
1356
+ {"shape":"ThrottledClientException"},
1357
+ {"shape":"ServiceUnavailableException"},
1358
+ {"shape":"ServiceFailureException"}
1359
+ ]
1087
1360
  }
1088
1361
  },
1089
1362
  "shapes":{
1363
+ "AccessDeniedException":{
1364
+ "type":"structure",
1365
+ "members":{
1366
+ "Code":{"shape":"ErrorCode"},
1367
+ "Message":{"shape":"String"}
1368
+ },
1369
+ "error":{"httpStatusCode":403},
1370
+ "exception":true
1371
+ },
1090
1372
  "Account":{
1091
1373
  "type":"structure",
1092
1374
  "required":[
@@ -1156,6 +1438,25 @@
1156
1438
  "members":{
1157
1439
  }
1158
1440
  },
1441
+ "AssociatePhoneNumbersWithVoiceConnectorGroupRequest":{
1442
+ "type":"structure",
1443
+ "required":["VoiceConnectorGroupId"],
1444
+ "members":{
1445
+ "VoiceConnectorGroupId":{
1446
+ "shape":"NonEmptyString",
1447
+ "location":"uri",
1448
+ "locationName":"voiceConnectorGroupId"
1449
+ },
1450
+ "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1451
+ "ForceAssociate":{"shape":"NullableBoolean"}
1452
+ }
1453
+ },
1454
+ "AssociatePhoneNumbersWithVoiceConnectorGroupResponse":{
1455
+ "type":"structure",
1456
+ "members":{
1457
+ "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1458
+ }
1459
+ },
1159
1460
  "AssociatePhoneNumbersWithVoiceConnectorRequest":{
1160
1461
  "type":"structure",
1161
1462
  "required":["VoiceConnectorId"],
@@ -1165,7 +1466,8 @@
1165
1466
  "location":"uri",
1166
1467
  "locationName":"voiceConnectorId"
1167
1468
  },
1168
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1469
+ "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1470
+ "ForceAssociate":{"shape":"NullableBoolean"}
1169
1471
  }
1170
1472
  },
1171
1473
  "AssociatePhoneNumbersWithVoiceConnectorResponse":{
@@ -1304,6 +1606,20 @@
1304
1606
  }
1305
1607
  }
1306
1608
  },
1609
+ "CallingName":{
1610
+ "type":"string",
1611
+ "pattern":"^$|^[a-zA-Z0-9 ]{2,15}$",
1612
+ "sensitive":true
1613
+ },
1614
+ "CallingNameStatus":{
1615
+ "type":"string",
1616
+ "enum":[
1617
+ "Unassigned",
1618
+ "UpdateInProgress",
1619
+ "UpdateSucceeded",
1620
+ "UpdateFailed"
1621
+ ]
1622
+ },
1307
1623
  "CallingRegion":{"type":"string"},
1308
1624
  "CallingRegionList":{
1309
1625
  "type":"list",
@@ -1374,6 +1690,20 @@
1374
1690
  "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
1375
1691
  }
1376
1692
  },
1693
+ "CreateVoiceConnectorGroupRequest":{
1694
+ "type":"structure",
1695
+ "required":["Name"],
1696
+ "members":{
1697
+ "Name":{"shape":"VoiceConnectorGroupName"},
1698
+ "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
1699
+ }
1700
+ },
1701
+ "CreateVoiceConnectorGroupResponse":{
1702
+ "type":"structure",
1703
+ "members":{
1704
+ "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
1705
+ }
1706
+ },
1377
1707
  "CreateVoiceConnectorRequest":{
1378
1708
  "type":"structure",
1379
1709
  "required":[
@@ -1382,6 +1712,7 @@
1382
1712
  ],
1383
1713
  "members":{
1384
1714
  "Name":{"shape":"VoiceConnectorName"},
1715
+ "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
1385
1716
  "RequireEncryption":{"shape":"Boolean"}
1386
1717
  }
1387
1718
  },
@@ -1402,6 +1733,10 @@
1402
1733
  "type":"list",
1403
1734
  "member":{"shape":"Credential"}
1404
1735
  },
1736
+ "DataRetentionInHours":{
1737
+ "type":"integer",
1738
+ "min":0
1739
+ },
1405
1740
  "DeleteAccountRequest":{
1406
1741
  "type":"structure",
1407
1742
  "required":["AccountId"],
@@ -1448,6 +1783,17 @@
1448
1783
  }
1449
1784
  }
1450
1785
  },
1786
+ "DeleteVoiceConnectorGroupRequest":{
1787
+ "type":"structure",
1788
+ "required":["VoiceConnectorGroupId"],
1789
+ "members":{
1790
+ "VoiceConnectorGroupId":{
1791
+ "shape":"NonEmptyString",
1792
+ "location":"uri",
1793
+ "locationName":"voiceConnectorGroupId"
1794
+ }
1795
+ }
1796
+ },
1451
1797
  "DeleteVoiceConnectorOriginationRequest":{
1452
1798
  "type":"structure",
1453
1799
  "required":["VoiceConnectorId"],
@@ -1470,6 +1816,17 @@
1470
1816
  }
1471
1817
  }
1472
1818
  },
1819
+ "DeleteVoiceConnectorStreamingConfigurationRequest":{
1820
+ "type":"structure",
1821
+ "required":["VoiceConnectorId"],
1822
+ "members":{
1823
+ "VoiceConnectorId":{
1824
+ "shape":"NonEmptyString",
1825
+ "location":"uri",
1826
+ "locationName":"voiceConnectorId"
1827
+ }
1828
+ }
1829
+ },
1473
1830
  "DeleteVoiceConnectorTerminationCredentialsRequest":{
1474
1831
  "type":"structure",
1475
1832
  "required":["VoiceConnectorId"],
@@ -1517,6 +1874,24 @@
1517
1874
  "members":{
1518
1875
  }
1519
1876
  },
1877
+ "DisassociatePhoneNumbersFromVoiceConnectorGroupRequest":{
1878
+ "type":"structure",
1879
+ "required":["VoiceConnectorGroupId"],
1880
+ "members":{
1881
+ "VoiceConnectorGroupId":{
1882
+ "shape":"NonEmptyString",
1883
+ "location":"uri",
1884
+ "locationName":"voiceConnectorGroupId"
1885
+ },
1886
+ "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1887
+ }
1888
+ },
1889
+ "DisassociatePhoneNumbersFromVoiceConnectorGroupResponse":{
1890
+ "type":"structure",
1891
+ "members":{
1892
+ "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1893
+ }
1894
+ },
1520
1895
  "DisassociatePhoneNumbersFromVoiceConnectorRequest":{
1521
1896
  "type":"structure",
1522
1897
  "required":["VoiceConnectorId"],
@@ -1560,16 +1935,20 @@
1560
1935
  "ErrorCode":{
1561
1936
  "type":"string",
1562
1937
  "enum":[
1563
- "Unauthorized",
1564
- "Forbidden",
1565
- "NotFound",
1566
1938
  "BadRequest",
1567
1939
  "Conflict",
1940
+ "Forbidden",
1941
+ "NotFound",
1942
+ "PreconditionFailed",
1943
+ "ResourceLimitExceeded",
1568
1944
  "ServiceFailure",
1945
+ "AccessDenied",
1569
1946
  "ServiceUnavailable",
1570
- "Unprocessable",
1571
1947
  "Throttled",
1572
- "PreconditionFailed"
1948
+ "Unauthorized",
1949
+ "Unprocessable",
1950
+ "VoiceConnectorGroupAssociationsExist",
1951
+ "PhoneNumberAssociationsExist"
1573
1952
  ]
1574
1953
  },
1575
1954
  "EventsConfiguration":{
@@ -1714,6 +2093,13 @@
1714
2093
  "PhoneNumber":{"shape":"PhoneNumber"}
1715
2094
  }
1716
2095
  },
2096
+ "GetPhoneNumberSettingsResponse":{
2097
+ "type":"structure",
2098
+ "members":{
2099
+ "CallingName":{"shape":"CallingName"},
2100
+ "CallingNameUpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2101
+ }
2102
+ },
1717
2103
  "GetUserRequest":{
1718
2104
  "type":"structure",
1719
2105
  "required":[
@@ -1764,6 +2150,40 @@
1764
2150
  "UserSettings":{"shape":"UserSettings"}
1765
2151
  }
1766
2152
  },
2153
+ "GetVoiceConnectorGroupRequest":{
2154
+ "type":"structure",
2155
+ "required":["VoiceConnectorGroupId"],
2156
+ "members":{
2157
+ "VoiceConnectorGroupId":{
2158
+ "shape":"NonEmptyString",
2159
+ "location":"uri",
2160
+ "locationName":"voiceConnectorGroupId"
2161
+ }
2162
+ }
2163
+ },
2164
+ "GetVoiceConnectorGroupResponse":{
2165
+ "type":"structure",
2166
+ "members":{
2167
+ "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
2168
+ }
2169
+ },
2170
+ "GetVoiceConnectorLoggingConfigurationRequest":{
2171
+ "type":"structure",
2172
+ "required":["VoiceConnectorId"],
2173
+ "members":{
2174
+ "VoiceConnectorId":{
2175
+ "shape":"NonEmptyString",
2176
+ "location":"uri",
2177
+ "locationName":"voiceConnectorId"
2178
+ }
2179
+ }
2180
+ },
2181
+ "GetVoiceConnectorLoggingConfigurationResponse":{
2182
+ "type":"structure",
2183
+ "members":{
2184
+ "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2185
+ }
2186
+ },
1767
2187
  "GetVoiceConnectorOriginationRequest":{
1768
2188
  "type":"structure",
1769
2189
  "required":["VoiceConnectorId"],
@@ -1798,6 +2218,23 @@
1798
2218
  "VoiceConnector":{"shape":"VoiceConnector"}
1799
2219
  }
1800
2220
  },
2221
+ "GetVoiceConnectorStreamingConfigurationRequest":{
2222
+ "type":"structure",
2223
+ "required":["VoiceConnectorId"],
2224
+ "members":{
2225
+ "VoiceConnectorId":{
2226
+ "shape":"NonEmptyString",
2227
+ "location":"uri",
2228
+ "locationName":"voiceConnectorId"
2229
+ }
2230
+ }
2231
+ },
2232
+ "GetVoiceConnectorStreamingConfigurationResponse":{
2233
+ "type":"structure",
2234
+ "members":{
2235
+ "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2236
+ }
2237
+ },
1801
2238
  "GetVoiceConnectorTerminationHealthRequest":{
1802
2239
  "type":"structure",
1803
2240
  "required":["VoiceConnectorId"],
@@ -2052,6 +2489,28 @@
2052
2489
  "NextToken":{"shape":"String"}
2053
2490
  }
2054
2491
  },
2492
+ "ListVoiceConnectorGroupsRequest":{
2493
+ "type":"structure",
2494
+ "members":{
2495
+ "NextToken":{
2496
+ "shape":"String",
2497
+ "location":"querystring",
2498
+ "locationName":"next-token"
2499
+ },
2500
+ "MaxResults":{
2501
+ "shape":"ResultMax",
2502
+ "location":"querystring",
2503
+ "locationName":"max-results"
2504
+ }
2505
+ }
2506
+ },
2507
+ "ListVoiceConnectorGroupsResponse":{
2508
+ "type":"structure",
2509
+ "members":{
2510
+ "VoiceConnectorGroups":{"shape":"VoiceConnectorGroupList"},
2511
+ "NextToken":{"shape":"String"}
2512
+ }
2513
+ },
2055
2514
  "ListVoiceConnectorTerminationCredentialsRequest":{
2056
2515
  "type":"structure",
2057
2516
  "required":["VoiceConnectorId"],
@@ -2091,6 +2550,12 @@
2091
2550
  "NextToken":{"shape":"String"}
2092
2551
  }
2093
2552
  },
2553
+ "LoggingConfiguration":{
2554
+ "type":"structure",
2555
+ "members":{
2556
+ "EnableSIPLogs":{"shape":"Boolean"}
2557
+ }
2558
+ },
2094
2559
  "LogoutUserRequest":{
2095
2560
  "type":"structure",
2096
2561
  "required":[
@@ -2201,6 +2666,8 @@
2201
2666
  "Status":{"shape":"PhoneNumberStatus"},
2202
2667
  "Capabilities":{"shape":"PhoneNumberCapabilities"},
2203
2668
  "Associations":{"shape":"PhoneNumberAssociationList"},
2669
+ "CallingName":{"shape":"CallingName"},
2670
+ "CallingNameStatus":{"shape":"CallingNameStatus"},
2204
2671
  "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2205
2672
  "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
2206
2673
  "DeletionTimestamp":{"shape":"Iso8601Timestamp"}
@@ -2223,7 +2690,8 @@
2223
2690
  "enum":[
2224
2691
  "AccountId",
2225
2692
  "UserId",
2226
- "VoiceConnectorId"
2693
+ "VoiceConnectorId",
2694
+ "VoiceConnectorGroupId"
2227
2695
  ]
2228
2696
  },
2229
2697
  "PhoneNumberCapabilities":{
@@ -2346,6 +2814,27 @@
2346
2814
  "EventsConfiguration":{"shape":"EventsConfiguration"}
2347
2815
  }
2348
2816
  },
2817
+ "PutVoiceConnectorLoggingConfigurationRequest":{
2818
+ "type":"structure",
2819
+ "required":[
2820
+ "VoiceConnectorId",
2821
+ "LoggingConfiguration"
2822
+ ],
2823
+ "members":{
2824
+ "VoiceConnectorId":{
2825
+ "shape":"NonEmptyString",
2826
+ "location":"uri",
2827
+ "locationName":"voiceConnectorId"
2828
+ },
2829
+ "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2830
+ }
2831
+ },
2832
+ "PutVoiceConnectorLoggingConfigurationResponse":{
2833
+ "type":"structure",
2834
+ "members":{
2835
+ "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2836
+ }
2837
+ },
2349
2838
  "PutVoiceConnectorOriginationRequest":{
2350
2839
  "type":"structure",
2351
2840
  "required":[
@@ -2367,6 +2856,27 @@
2367
2856
  "Origination":{"shape":"Origination"}
2368
2857
  }
2369
2858
  },
2859
+ "PutVoiceConnectorStreamingConfigurationRequest":{
2860
+ "type":"structure",
2861
+ "required":[
2862
+ "VoiceConnectorId",
2863
+ "StreamingConfiguration"
2864
+ ],
2865
+ "members":{
2866
+ "VoiceConnectorId":{
2867
+ "shape":"NonEmptyString",
2868
+ "location":"uri",
2869
+ "locationName":"voiceConnectorId"
2870
+ },
2871
+ "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2872
+ }
2873
+ },
2874
+ "PutVoiceConnectorStreamingConfigurationResponse":{
2875
+ "type":"structure",
2876
+ "members":{
2877
+ "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2878
+ }
2879
+ },
2370
2880
  "PutVoiceConnectorTerminationCredentialsRequest":{
2371
2881
  "type":"structure",
2372
2882
  "required":["VoiceConnectorId"],
@@ -2563,6 +3073,14 @@
2563
3073
  "exception":true,
2564
3074
  "fault":true
2565
3075
  },
3076
+ "StreamingConfiguration":{
3077
+ "type":"structure",
3078
+ "required":["DataRetentionInHours"],
3079
+ "members":{
3080
+ "DataRetentionInHours":{"shape":"DataRetentionInHours"},
3081
+ "Disabled":{"shape":"Boolean"}
3082
+ }
3083
+ },
2566
3084
  "String":{"type":"string"},
2567
3085
  "StringList":{
2568
3086
  "type":"list",
@@ -2715,7 +3233,8 @@
2715
3233
  "location":"uri",
2716
3234
  "locationName":"phoneNumberId"
2717
3235
  },
2718
- "ProductType":{"shape":"PhoneNumberProductType"}
3236
+ "ProductType":{"shape":"PhoneNumberProductType"},
3237
+ "CallingName":{"shape":"CallingName"}
2719
3238
  }
2720
3239
  },
2721
3240
  "UpdatePhoneNumberRequestItem":{
@@ -2723,7 +3242,8 @@
2723
3242
  "required":["PhoneNumberId"],
2724
3243
  "members":{
2725
3244
  "PhoneNumberId":{"shape":"NonEmptyString"},
2726
- "ProductType":{"shape":"PhoneNumberProductType"}
3245
+ "ProductType":{"shape":"PhoneNumberProductType"},
3246
+ "CallingName":{"shape":"CallingName"}
2727
3247
  }
2728
3248
  },
2729
3249
  "UpdatePhoneNumberRequestItemList":{
@@ -2736,6 +3256,13 @@
2736
3256
  "PhoneNumber":{"shape":"PhoneNumber"}
2737
3257
  }
2738
3258
  },
3259
+ "UpdatePhoneNumberSettingsRequest":{
3260
+ "type":"structure",
3261
+ "required":["CallingName"],
3262
+ "members":{
3263
+ "CallingName":{"shape":"CallingName"}
3264
+ }
3265
+ },
2739
3266
  "UpdateUserRequest":{
2740
3267
  "type":"structure",
2741
3268
  "required":[
@@ -2796,6 +3323,29 @@
2796
3323
  "UserSettings":{"shape":"UserSettings"}
2797
3324
  }
2798
3325
  },
3326
+ "UpdateVoiceConnectorGroupRequest":{
3327
+ "type":"structure",
3328
+ "required":[
3329
+ "VoiceConnectorGroupId",
3330
+ "Name",
3331
+ "VoiceConnectorItems"
3332
+ ],
3333
+ "members":{
3334
+ "VoiceConnectorGroupId":{
3335
+ "shape":"NonEmptyString",
3336
+ "location":"uri",
3337
+ "locationName":"voiceConnectorGroupId"
3338
+ },
3339
+ "Name":{"shape":"VoiceConnectorGroupName"},
3340
+ "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
3341
+ }
3342
+ },
3343
+ "UpdateVoiceConnectorGroupResponse":{
3344
+ "type":"structure",
3345
+ "members":{
3346
+ "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
3347
+ }
3348
+ },
2799
3349
  "UpdateVoiceConnectorRequest":{
2800
3350
  "type":"structure",
2801
3351
  "required":[
@@ -2873,6 +3423,7 @@
2873
3423
  "type":"structure",
2874
3424
  "members":{
2875
3425
  "VoiceConnectorId":{"shape":"NonEmptyString"},
3426
+ "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
2876
3427
  "Name":{"shape":"VoiceConnectorName"},
2877
3428
  "OutboundHostName":{"shape":"String"},
2878
3429
  "RequireEncryption":{"shape":"Boolean"},
@@ -2880,6 +3431,52 @@
2880
3431
  "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2881
3432
  }
2882
3433
  },
3434
+ "VoiceConnectorAwsRegion":{
3435
+ "type":"string",
3436
+ "enum":[
3437
+ "us-east-1",
3438
+ "us-west-2"
3439
+ ]
3440
+ },
3441
+ "VoiceConnectorGroup":{
3442
+ "type":"structure",
3443
+ "members":{
3444
+ "VoiceConnectorGroupId":{"shape":"NonEmptyString"},
3445
+ "Name":{"shape":"VoiceConnectorGroupName"},
3446
+ "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"},
3447
+ "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
3448
+ "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
3449
+ }
3450
+ },
3451
+ "VoiceConnectorGroupList":{
3452
+ "type":"list",
3453
+ "member":{"shape":"VoiceConnectorGroup"}
3454
+ },
3455
+ "VoiceConnectorGroupName":{
3456
+ "type":"string",
3457
+ "max":256,
3458
+ "min":1
3459
+ },
3460
+ "VoiceConnectorItem":{
3461
+ "type":"structure",
3462
+ "required":[
3463
+ "VoiceConnectorId",
3464
+ "Priority"
3465
+ ],
3466
+ "members":{
3467
+ "VoiceConnectorId":{"shape":"NonEmptyString"},
3468
+ "Priority":{"shape":"VoiceConnectorItemPriority"}
3469
+ }
3470
+ },
3471
+ "VoiceConnectorItemList":{
3472
+ "type":"list",
3473
+ "member":{"shape":"VoiceConnectorItem"}
3474
+ },
3475
+ "VoiceConnectorItemPriority":{
3476
+ "type":"integer",
3477
+ "max":99,
3478
+ "min":1
3479
+ },
2883
3480
  "VoiceConnectorList":{
2884
3481
  "type":"list",
2885
3482
  "member":{"shape":"VoiceConnector"}
@@ -5,6 +5,11 @@
5
5
  "output_token": "NextToken",
6
6
  "limit_key": "MaxResults"
7
7
  },
8
+ "ListBots": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
8
13
  "ListPhoneNumberOrders": {
9
14
  "input_token": "NextToken",
10
15
  "output_token": "NextToken",
@@ -20,6 +25,11 @@
20
25
  "output_token": "NextToken",
21
26
  "limit_key": "MaxResults"
22
27
  },
28
+ "ListVoiceConnectorGroups": {
29
+ "input_token": "NextToken",
30
+ "output_token": "NextToken",
31
+ "limit_key": "MaxResults"
32
+ },
23
33
  "ListVoiceConnectors": {
24
34
  "input_token": "NextToken",
25
35
  "output_token": "NextToken",
@@ -6042,7 +6042,11 @@
6042
6042
  "LogsStorageLocation":{"shape":"StorageLocation"},
6043
6043
  "Description":{"shape":"String"},
6044
6044
  "Name":{"shape":"String"},
6045
- "ClientToken":{"shape":"String"}
6045
+ "ClientToken":{"shape":"String"},
6046
+ "TagSpecifications":{
6047
+ "shape":"TagSpecificationList",
6048
+ "locationName":"TagSpecification"
6049
+ }
6046
6050
  }
6047
6051
  },
6048
6052
  "CreateFpgaImageResult":{
@@ -1994,6 +1994,14 @@
1994
1994
  "c4.2xlarge",
1995
1995
  "c4.4xlarge",
1996
1996
  "c4.8xlarge",
1997
+ "c5.large",
1998
+ "c5.xlarge",
1999
+ "c5.2xlarge",
2000
+ "c5.4xlarge",
2001
+ "c5.9xlarge",
2002
+ "c5.12xlarge",
2003
+ "c5.18xlarge",
2004
+ "c5.24xlarge",
1997
2005
  "r3.large",
1998
2006
  "r3.xlarge",
1999
2007
  "r3.2xlarge",
@@ -2005,6 +2013,14 @@
2005
2013
  "r4.4xlarge",
2006
2014
  "r4.8xlarge",
2007
2015
  "r4.16xlarge",
2016
+ "r5.large",
2017
+ "r5.xlarge",
2018
+ "r5.2xlarge",
2019
+ "r5.4xlarge",
2020
+ "r5.8xlarge",
2021
+ "r5.12xlarge",
2022
+ "r5.16xlarge",
2023
+ "r5.24xlarge",
2008
2024
  "m3.medium",
2009
2025
  "m3.large",
2010
2026
  "m3.xlarge",
@@ -2013,7 +2029,15 @@
2013
2029
  "m4.xlarge",
2014
2030
  "m4.2xlarge",
2015
2031
  "m4.4xlarge",
2016
- "m4.10xlarge"
2032
+ "m4.10xlarge",
2033
+ "m5.large",
2034
+ "m5.xlarge",
2035
+ "m5.2xlarge",
2036
+ "m5.4xlarge",
2037
+ "m5.8xlarge",
2038
+ "m5.12xlarge",
2039
+ "m5.16xlarge",
2040
+ "m5.24xlarge"
2017
2041
  ]
2018
2042
  },
2019
2043
  "Event":{
@@ -2734,7 +2758,8 @@
2734
2758
  "type":"string",
2735
2759
  "enum":[
2736
2760
  "WINDOWS_2012",
2737
- "AMAZON_LINUX"
2761
+ "AMAZON_LINUX",
2762
+ "AMAZON_LINUX_2"
2738
2763
  ]
2739
2764
  },
2740
2765
  "PlacedPlayerSession":{
@@ -3741,7 +3741,10 @@
3741
3741
  "enum":[
3742
3742
  "ml.eia1.medium",
3743
3743
  "ml.eia1.large",
3744
- "ml.eia1.xlarge"
3744
+ "ml.eia1.xlarge",
3745
+ "ml.eia2.medium",
3746
+ "ml.eia2.large",
3747
+ "ml.eia2.xlarge"
3745
3748
  ]
3746
3749
  },
3747
3750
  "NotebookInstanceAcceleratorTypes":{
@@ -4048,7 +4051,10 @@
4048
4051
  "enum":[
4049
4052
  "ml.eia1.medium",
4050
4053
  "ml.eia1.large",
4051
- "ml.eia1.xlarge"
4054
+ "ml.eia1.xlarge",
4055
+ "ml.eia2.medium",
4056
+ "ml.eia2.large",
4057
+ "ml.eia2.xlarge"
4052
4058
  ]
4053
4059
  },
4054
4060
  "ProductionVariantInstanceType":{
@@ -4069,6 +4075,12 @@
4069
4075
  "ml.m5.4xlarge",
4070
4076
  "ml.m5.12xlarge",
4071
4077
  "ml.m5.24xlarge",
4078
+ "ml.m5d.large",
4079
+ "ml.m5d.xlarge",
4080
+ "ml.m5d.2xlarge",
4081
+ "ml.m5d.4xlarge",
4082
+ "ml.m5d.12xlarge",
4083
+ "ml.m5d.24xlarge",
4072
4084
  "ml.c4.large",
4073
4085
  "ml.c4.xlarge",
4074
4086
  "ml.c4.2xlarge",
@@ -4086,6 +4098,12 @@
4086
4098
  "ml.c5.4xlarge",
4087
4099
  "ml.c5.9xlarge",
4088
4100
  "ml.c5.18xlarge",
4101
+ "ml.c5d.large",
4102
+ "ml.c5d.xlarge",
4103
+ "ml.c5d.2xlarge",
4104
+ "ml.c5d.4xlarge",
4105
+ "ml.c5d.9xlarge",
4106
+ "ml.c5d.18xlarge",
4089
4107
  "ml.g4dn.xlarge",
4090
4108
  "ml.g4dn.2xlarge",
4091
4109
  "ml.g4dn.4xlarge",
@@ -4097,7 +4115,13 @@
4097
4115
  "ml.r5.2xlarge",
4098
4116
  "ml.r5.4xlarge",
4099
4117
  "ml.r5.12xlarge",
4100
- "ml.r5.24xlarge"
4118
+ "ml.r5.24xlarge",
4119
+ "ml.r5d.large",
4120
+ "ml.r5d.xlarge",
4121
+ "ml.r5d.2xlarge",
4122
+ "ml.r5d.4xlarge",
4123
+ "ml.r5d.12xlarge",
4124
+ "ml.r5d.24xlarge"
4101
4125
  ]
4102
4126
  },
4103
4127
  "ProductionVariantList":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.380'
2
+ VERSION = '2.11.381'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.380
4
+ version: 2.11.381
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2019-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath