aws-sdk 2.1131.0 → 2.1132.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/CHANGELOG.md +6 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +342 -301
- package/apis/elasticmapreduce-2009-03-31.min.json +47 -35
- package/clients/computeoptimizer.d.ts +3 -3
- package/clients/ec2.d.ts +55 -1
- package/clients/eks.d.ts +13 -13
- package/clients/emr.d.ts +24 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +392 -339
- package/dist/aws-sdk.min.js +67 -66
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1132.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1132.0
|
|
6
|
+
* feature: EC2: Added support for using NitroTPM and UEFI Secure Boot on EC2 instances.
|
|
7
|
+
* feature: EKS: Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups
|
|
8
|
+
* feature: EMR: This release updates the Amazon EMR ModifyInstanceGroups API to support "MERGE" type cluster reconfiguration. Also, added the ability to specify a particular Amazon Linux release for all nodes in a cluster launch request.
|
|
9
|
+
|
|
5
10
|
## 2.1131.0
|
|
6
11
|
* feature: CloudControl: SDK release for Cloud Control API to include paginators for Python SDK.
|
|
7
12
|
* feature: Evidently: Add detail message inside GetExperimentResults API response to indicate experiment result availability
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1132.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|