aws-sdk 2.1283.0 → 2.1284.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 +7 -1
- package/README.md +1 -1
- package/apis/elasticache-2015-02-02.min.json +160 -145
- package/apis/network-firewall-2020-11-12.min.json +50 -49
- package/apis/rds-2014-10-31.min.json +242 -236
- package/apis/route53-recovery-control-config-2020-11-02.paginators.json +10 -5
- package/clients/elasticache.d.ts +46 -9
- package/clients/networkfirewall.d.ts +6 -1
- package/clients/rds.d.ts +27 -5
- package/clients/route53recoverycontrolconfig.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +405 -384
- package/dist/aws-sdk.min.js +57 -57
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1284.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1284.0
|
|
6
|
+
* feature: ElastiCache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability.
|
|
7
|
+
* feature: NetworkFirewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails.
|
|
8
|
+
* feature: RDS: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server.
|
|
9
|
+
* feature: Route53RecoveryControlConfig: Added support for Python paginators in the route53-recovery-control-config List* APIs.
|
|
10
|
+
|
|
5
11
|
## 2.1283.0
|
|
6
12
|
* feature: MemoryDB: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account.
|
|
7
13
|
* feature: Transfer: Add additional operations to throw ThrottlingExceptions
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ for further details.
|
|
|
57
57
|
To use the SDK in the browser, simply add the following script tag to your
|
|
58
58
|
HTML pages:
|
|
59
59
|
|
|
60
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
60
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1284.0.min.js"></script>
|
|
61
61
|
|
|
62
62
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
63
63
|
This can allow you to reduce the SDK's size, specify different API versions of
|