aws-sdk 2.1445.0 → 2.1446.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 +8 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +97 -95
- package/apis/compute-optimizer-2019-11-01.min.json +200 -57
- package/apis/service-quotas-2019-06-24.min.json +45 -23
- package/apis/workspaces-web-2020-07-08.min.json +136 -58
- package/clients/backup.d.ts +12 -3
- package/clients/computeoptimizer.d.ts +214 -2
- package/clients/organizations.d.ts +55 -55
- package/clients/servicequotas.d.ts +138 -80
- package/clients/workspacesweb.d.ts +69 -16
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1446.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1446.0
|
6
|
+
* feature: Backup: Add support for customizing time zone for backup window in backup plan rules.
|
7
|
+
* feature: ComputeOptimizer: This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances.
|
8
|
+
* feature: SecurityLake: Remove incorrect regex enforcement on pagination tokens.
|
9
|
+
* feature: ServiceQuotas: Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account.
|
10
|
+
* feature: WorkSpacesWeb: WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.
|
11
|
+
|
5
12
|
## 2.1445.0
|
6
13
|
* feature: CloudTrail: Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.
|
7
14
|
* feature: Detective: Added protections to interacting with fields containing customer information.
|
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.1446.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
|