aws-sdk 2.1436.0 → 2.1437.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 +9 -1
- package/README.md +1 -1
- package/apis/glue-2017-03-31.min.json +218 -215
- package/apis/pi-2018-02-27.min.json +304 -11
- package/apis/pi-2018-02-27.paginators.json +5 -0
- package/apis/route53domains-2014-05-15.min.json +103 -44
- package/apis/sagemaker-2017-07-24.min.json +564 -560
- package/clients/ec2.d.ts +10 -10
- package/clients/glue.d.ts +13 -0
- package/clients/pi.d.ts +382 -5
- package/clients/route53domains.d.ts +8 -2
- package/clients/sagemaker.d.ts +9 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +106 -47
- package/dist/aws-sdk.min.js +25 -25
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1437.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1437.0
|
6
|
+
* feature: ChimeSDKMeetings: Updated API documentation to include additional exceptions.
|
7
|
+
* feature: EC2: Documentation updates for Elastic Compute Cloud (EC2).
|
8
|
+
* feature: Glue: AWS Glue Crawlers can now accept SerDe overrides from a custom csv classifier. The two SerDe options are LazySimpleSerDe and OpenCSVSerDe. In case, the user wants crawler to do the selection, "None" can be selected for this purpose.
|
9
|
+
* feature: PI: AWS Performance Insights for Amazon RDS is launching Performance Analysis On Demand, a new feature that allows you to analyze database performance metrics and find out the performance issues. You can now use SDK to create, list, get, delete, and manage tags of performance analysis reports.
|
10
|
+
* feature: Route53Domains: Provide explanation if CheckDomainTransferability return false. Provide requestId if a request is already submitted. Add sensitive protection for customer information
|
11
|
+
* feature: SageMaker: SageMaker Inference Recommender now provides SupportedResponseMIMETypes from DescribeInferenceRecommendationsJob response
|
12
|
+
|
5
13
|
## 2.1436.0
|
6
14
|
* feature: MediaPackage: Fix SDK logging of certain fields.
|
7
15
|
* feature: Omics: This release provides support for annotation store versioning and cross account sharing for Omics Analytics
|
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.1437.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
|