aws-sdk 2.1440.0 → 2.1441.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 +605 -593
- package/apis/finspace-2021-03-12.min.json +74 -13
- package/apis/rds-2014-10-31.min.json +142 -110
- package/clients/ec2.d.ts +12 -2
- package/clients/finspace.d.ts +73 -5
- package/clients/rds.d.ts +51 -13
- package/clients/route53domains.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +750 -706
- package/dist/aws-sdk.min.js +44 -44
- 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.1441.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1441.0
|
6
|
+
* feature: EC2: The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.
|
7
|
+
* feature: Finspace: Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.
|
8
|
+
* feature: RDS: Adding support for RDS Aurora Global Database Unplanned Failover
|
9
|
+
|
5
10
|
## 2.1440.0
|
6
11
|
* feature: CodeCommit: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
|
7
12
|
* feature: SecurityHub: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.
|
package/README.md
CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
71
71
|
To use the SDK in the browser, simply add the following script tag to your
|
72
72
|
HTML pages:
|
73
73
|
|
74
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1441.0.min.js"></script>
|
75
75
|
|
76
76
|
You can also build a custom browser SDK with your specified set of AWS services.
|
77
77
|
This can allow you to reduce the SDK's size, specify different API versions of
|