aws-sdk 2.1512.0 → 2.1514.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.
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +8 -2
- package/apis/codedeploy-2014-10-06.min.json +49 -2
- package/apis/connect-2017-08-08.min.json +7 -1
- package/apis/ec2-2016-11-15.min.json +282 -279
- package/apis/payment-cryptography-2021-09-14.min.json +34 -14
- package/clients/backup.d.ts +18 -6
- package/clients/codedeploy.d.ts +59 -8
- package/clients/comprehend.d.ts +15 -15
- package/clients/connect.d.ts +8 -0
- package/clients/ec2.d.ts +5 -0
- package/clients/paymentcryptography.d.ts +70 -41
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +342 -285
- package/dist/aws-sdk.min.js +89 -89
- package/lib/core.js +1 -1
- package/lib/region_config_data.json +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
69
69
|
To use the SDK in the browser, simply add the following script tag to your
|
70
70
|
HTML pages:
|
71
71
|
|
72
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
72
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1514.0.min.js"></script>
|
73
73
|
|
74
74
|
You can also build a custom browser SDK with your specified set of AWS services.
|
75
75
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -978,7 +978,8 @@
|
|
978
978
|
"IsParent": {
|
979
979
|
"type": "boolean"
|
980
980
|
},
|
981
|
-
"ResourceName": {}
|
981
|
+
"ResourceName": {},
|
982
|
+
"VaultType": {}
|
982
983
|
}
|
983
984
|
},
|
984
985
|
"idempotent": true
|
@@ -2496,7 +2497,8 @@
|
|
2496
2497
|
"IsParent": {
|
2497
2498
|
"type": "boolean"
|
2498
2499
|
},
|
2499
|
-
"ResourceName": {}
|
2500
|
+
"ResourceName": {},
|
2501
|
+
"VaultType": {}
|
2500
2502
|
}
|
2501
2503
|
}
|
2502
2504
|
}
|
@@ -2775,6 +2777,10 @@
|
|
2775
2777
|
"location": "querystring",
|
2776
2778
|
"locationName": "accountId"
|
2777
2779
|
},
|
2780
|
+
"ByResourceType": {
|
2781
|
+
"location": "querystring",
|
2782
|
+
"locationName": "resourceType"
|
2783
|
+
},
|
2778
2784
|
"ByCreatedBefore": {
|
2779
2785
|
"location": "querystring",
|
2780
2786
|
"locationName": "createdBefore",
|
@@ -149,6 +149,10 @@
|
|
149
149
|
"BatchGetDeploymentTargets": {
|
150
150
|
"input": {
|
151
151
|
"type": "structure",
|
152
|
+
"required": [
|
153
|
+
"deploymentId",
|
154
|
+
"targetIds"
|
155
|
+
],
|
152
156
|
"members": {
|
153
157
|
"deploymentId": {},
|
154
158
|
"targetIds": {
|
@@ -299,7 +303,10 @@
|
|
299
303
|
"trafficRoutingConfig": {
|
300
304
|
"shape": "S57"
|
301
305
|
},
|
302
|
-
"computePlatform": {}
|
306
|
+
"computePlatform": {},
|
307
|
+
"zonalConfig": {
|
308
|
+
"shape": "S5d"
|
309
|
+
}
|
303
310
|
}
|
304
311
|
},
|
305
312
|
"output": {
|
@@ -361,6 +368,9 @@
|
|
361
368
|
},
|
362
369
|
"tags": {
|
363
370
|
"shape": "S2"
|
371
|
+
},
|
372
|
+
"terminationHookEnabled": {
|
373
|
+
"type": "boolean"
|
364
374
|
}
|
365
375
|
}
|
366
376
|
},
|
@@ -543,6 +553,9 @@
|
|
543
553
|
"computePlatform": {},
|
544
554
|
"trafficRoutingConfig": {
|
545
555
|
"shape": "S57"
|
556
|
+
},
|
557
|
+
"zonalConfig": {
|
558
|
+
"shape": "S5d"
|
546
559
|
}
|
547
560
|
}
|
548
561
|
}
|
@@ -596,6 +609,10 @@
|
|
596
609
|
"GetDeploymentTarget": {
|
597
610
|
"input": {
|
598
611
|
"type": "structure",
|
612
|
+
"required": [
|
613
|
+
"deploymentId",
|
614
|
+
"targetId"
|
615
|
+
],
|
599
616
|
"members": {
|
600
617
|
"deploymentId": {},
|
601
618
|
"targetId": {}
|
@@ -748,6 +765,9 @@
|
|
748
765
|
"ListDeploymentTargets": {
|
749
766
|
"input": {
|
750
767
|
"type": "structure",
|
768
|
+
"required": [
|
769
|
+
"deploymentId"
|
770
|
+
],
|
751
771
|
"members": {
|
752
772
|
"deploymentId": {},
|
753
773
|
"nextToken": {},
|
@@ -1056,6 +1076,9 @@
|
|
1056
1076
|
},
|
1057
1077
|
"onPremisesTagSet": {
|
1058
1078
|
"shape": "S2v"
|
1079
|
+
},
|
1080
|
+
"terminationHookEnabled": {
|
1081
|
+
"type": "boolean"
|
1059
1082
|
}
|
1060
1083
|
}
|
1061
1084
|
},
|
@@ -1224,6 +1247,9 @@
|
|
1224
1247
|
"computePlatform": {},
|
1225
1248
|
"ecsServices": {
|
1226
1249
|
"shape": "S2x"
|
1250
|
+
},
|
1251
|
+
"terminationHookEnabled": {
|
1252
|
+
"type": "boolean"
|
1227
1253
|
}
|
1228
1254
|
}
|
1229
1255
|
},
|
@@ -1255,7 +1281,8 @@
|
|
1255
1281
|
"type": "structure",
|
1256
1282
|
"members": {
|
1257
1283
|
"name": {},
|
1258
|
-
"hook": {}
|
1284
|
+
"hook": {},
|
1285
|
+
"terminationHook": {}
|
1259
1286
|
}
|
1260
1287
|
}
|
1261
1288
|
},
|
@@ -1795,6 +1822,26 @@
|
|
1795
1822
|
}
|
1796
1823
|
}
|
1797
1824
|
}
|
1825
|
+
},
|
1826
|
+
"S5d": {
|
1827
|
+
"type": "structure",
|
1828
|
+
"members": {
|
1829
|
+
"firstZoneMonitorDurationInSeconds": {
|
1830
|
+
"type": "long"
|
1831
|
+
},
|
1832
|
+
"monitorDurationInSeconds": {
|
1833
|
+
"type": "long"
|
1834
|
+
},
|
1835
|
+
"minimumHealthyHostsPerZone": {
|
1836
|
+
"type": "structure",
|
1837
|
+
"members": {
|
1838
|
+
"type": {},
|
1839
|
+
"value": {
|
1840
|
+
"type": "integer"
|
1841
|
+
}
|
1842
|
+
}
|
1843
|
+
}
|
1844
|
+
}
|
1798
1845
|
}
|
1799
1846
|
}
|
1800
1847
|
}
|
@@ -796,6 +796,9 @@
|
|
796
796
|
},
|
797
797
|
"OutboundCallsEnabled": {
|
798
798
|
"type": "boolean"
|
799
|
+
},
|
800
|
+
"Tags": {
|
801
|
+
"shape": "S2y"
|
799
802
|
}
|
800
803
|
}
|
801
804
|
},
|
@@ -2527,7 +2530,10 @@
|
|
2527
2530
|
"OutboundCallsEnabled": {
|
2528
2531
|
"type": "boolean"
|
2529
2532
|
},
|
2530
|
-
"InstanceAccessUrl": {}
|
2533
|
+
"InstanceAccessUrl": {},
|
2534
|
+
"Tags": {
|
2535
|
+
"shape": "S2y"
|
2536
|
+
}
|
2531
2537
|
}
|
2532
2538
|
}
|
2533
2539
|
}
|