aws-sdk 2.1533.0 → 2.1534.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/ec2-2016-11-15.min.json +12 -0
- package/apis/ecs-2014-11-13.min.json +255 -130
- package/apis/eventbridge-2015-10-07.min.json +12 -3
- package/apis/secretsmanager-2017-10-17.examples.json +57 -0
- package/clients/ec2.d.ts +40 -24
- package/clients/ecs.d.ts +175 -13
- package/clients/eventbridge.d.ts +13 -2
- package/clients/iot.d.ts +4 -4
- package/clients/iotfleetwise.d.ts +2 -2
- package/clients/secretsmanager.d.ts +8 -8
- package/clients/workspaces.d.ts +5 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +270 -133
- package/dist/aws-sdk.min.js +67 -67
- package/lib/core.js +1 -1
- 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.1534.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
|
@@ -26639,6 +26639,12 @@
|
|
26639
26639
|
"DeleteOnTermination": {
|
26640
26640
|
"locationName": "deleteOnTermination",
|
26641
26641
|
"type": "boolean"
|
26642
|
+
},
|
26643
|
+
"AssociatedResource": {
|
26644
|
+
"locationName": "associatedResource"
|
26645
|
+
},
|
26646
|
+
"InstanceOwningService": {
|
26647
|
+
"locationName": "instanceOwningService"
|
26642
26648
|
}
|
26643
26649
|
}
|
26644
26650
|
},
|
@@ -32987,6 +32993,12 @@
|
|
32987
32993
|
},
|
32988
32994
|
"VolumeId": {
|
32989
32995
|
"locationName": "volumeId"
|
32996
|
+
},
|
32997
|
+
"AssociatedResource": {
|
32998
|
+
"locationName": "associatedResource"
|
32999
|
+
},
|
33000
|
+
"VolumeOwnerId": {
|
33001
|
+
"locationName": "volumeOwnerId"
|
32990
33002
|
}
|
32991
33003
|
}
|
32992
33004
|
}
|