aws-sdk 2.1456.0 → 2.1457.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/drs-2020-02-26.min.json +276 -79
- package/apis/drs-2020-02-26.paginators.json +6 -0
- package/apis/firehose-2015-08-04.min.json +101 -74
- package/apis/guardduty-2017-11-28.min.json +3 -0
- package/apis/xray-2016-04-12.min.json +3 -0
- package/clients/cloud9.d.ts +1 -1
- package/clients/drs.d.ts +215 -0
- package/clients/firehose.d.ts +38 -7
- package/clients/guardduty.d.ts +29 -24
- package/clients/xray.d.ts +4 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +107 -77
- package/dist/aws-sdk.min.js +53 -53
- 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.1457.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1457.0
|
6
|
+
* feature: Drs: Updated existing APIs and added new ones to support using AWS Elastic Disaster Recovery post-launch actions. Added support for new regions.
|
7
|
+
* feature: Firehose: DocumentIdOptions has been added for the Amazon OpenSearch destination.
|
8
|
+
* feature: GuardDuty: Add `managementType` field to ListCoverage API response.
|
9
|
+
* feature: InternetMonitor: This release updates the Amazon CloudWatch Internet Monitor API domain name.
|
10
|
+
* feature: XRay: Add StartTime field in GetTraceSummaries API response for each TraceSummary.
|
11
|
+
|
5
12
|
## 2.1456.0
|
6
13
|
* feature: EC2: This release adds support for restricting public sharing of AMIs through AMI Block Public Access
|
7
14
|
* feature: EventBridge: Adds sensitive trait to various shapes in Jetstream Connections API model.
|
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.1457.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
|