aws-sdk 2.1139.0 → 2.1142.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 +15 -1
- package/README.md +1 -1
- package/apis/cognito-idp-2016-04-18.min.json +145 -127
- package/apis/ec2-2016-11-15.min.json +17 -0
- package/apis/elasticache-2015-02-02.min.json +3 -0
- package/apis/forecast-2018-06-26.min.json +297 -61
- package/apis/forecast-2018-06-26.paginators.json +24 -0
- package/apis/mediaconvert-2017-08-29.min.json +176 -99
- package/apis/networkmanager-2019-07-05.min.json +72 -3
- package/apis/personalize-2018-05-22.min.json +14 -8
- package/clients/cloudwatchlogs.d.ts +4 -4
- package/clients/cognitoidentityserviceprovider.d.ts +163 -144
- package/clients/comprehend.d.ts +22 -22
- package/clients/ec2.d.ts +34 -14
- package/clients/elasticache.d.ts +12 -8
- package/clients/forecastservice.d.ts +355 -18
- package/clients/ivschat.d.ts +1 -1
- package/clients/mediaconvert.d.ts +83 -8
- package/clients/networkmanager.d.ts +56 -10
- package/clients/personalize.d.ts +12 -8
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +503 -199
- package/dist/aws-sdk.min.js +78 -78
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1142.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1142.0
|
|
6
|
+
* feature: CognitoIdentityServiceProvider: Amazon Cognito now supports requiring attribute verification (ex. email and phone number) before update.
|
|
7
|
+
* feature: EC2: Stop Protection feature enables customers to protect their instances from accidental stop actions.
|
|
8
|
+
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for rules that constrain Automatic-ABR rendition selection when generating ABR package ladders.
|
|
9
|
+
* feature: NetworkManager: This release adds Multi Account API support for a TGW Global Network, to enable and disable AWSServiceAccess with AwsOrganizations for Network Manager service and dependency CloudFormation StackSets service.
|
|
10
|
+
|
|
11
|
+
## 2.1141.0
|
|
12
|
+
* feature: ElastiCache: Added support for encryption in transit for Memcached clusters. Customers can now launch Memcached cluster with encryption in transit enabled when using Memcached version 1.6.12 or later.
|
|
13
|
+
* feature: ForecastService: New APIs for Monitor that help you understand how your predictors perform over time.
|
|
14
|
+
* feature: Personalize: Adding modelMetrics as part of DescribeRecommender API response for Personalize.
|
|
15
|
+
|
|
16
|
+
## 2.1140.0
|
|
17
|
+
* feature: Comprehend: Comprehend releases 14 new entity types for DetectPiiEntities and ContainsPiiEntities APIs.
|
|
18
|
+
|
|
5
19
|
## 2.1139.0
|
|
6
20
|
* feature: GameSparks: This release adds an optional DeploymentResult field in the responses of GetStageDeploymentIntegrationTests and ListStageDeploymentIntegrationTests APIs.
|
|
7
21
|
* feature: LookoutMetrics: In this release we added SnsFormat to SNSConfiguration to support human readable alert.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1142.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|