aws-sdk 2.1194.0 → 2.1197.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 +17 -1
- package/README.md +1 -1
- package/apis/appmesh-2019-01-25.min.json +220 -167
- package/apis/kendra-2019-02-03.min.json +105 -77
- package/apis/lakeformation-2017-03-31.min.json +98 -66
- package/apis/lambda-2015-03-31.min.json +135 -111
- package/apis/models.lex.v2-2020-08-07.min.json +405 -123
- package/apis/rds-2014-10-31.min.json +11 -5
- package/apis/rekognition-2016-06-27.examples.json +103 -0
- package/apis/rekognition-2016-06-27.min.json +252 -141
- package/apis/rekognition-2016-06-27.paginators.json +6 -0
- package/apis/wisdom-2020-10-19.min.json +59 -3
- package/clients/appmesh.d.ts +70 -3
- package/clients/cloudfront.d.ts +2 -2
- package/clients/kendra.d.ts +38 -6
- package/clients/lakeformation.d.ts +48 -2
- package/clients/lambda.d.ts +45 -17
- package/clients/lexmodelsv2.d.ts +290 -2
- package/clients/rds.d.ts +36 -12
- package/clients/rekognition.d.ts +170 -3
- package/clients/secretsmanager.d.ts +11 -11
- package/clients/servicecatalog.d.ts +57 -57
- package/clients/wisdom.d.ts +56 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +407 -260
- package/dist/aws-sdk.min.js +41 -41
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1197.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1197.0
|
|
6
|
+
* feature: AppMesh: AWS App Mesh release to support Multiple Listener and Access Log Format feature
|
|
7
|
+
* feature: ConnectCampaigns: Updated exceptions for Amazon Connect Outbound Campaign api's.
|
|
8
|
+
* feature: Kendra: This release adds Zendesk connector (which allows you to specify Zendesk SAAS platform as data source), Proxy Support for Sharepoint and Confluence Server (which allows you to specify the proxy configuration if proxy is required to connect to your Sharepoint/Confluence Server as data source).
|
|
9
|
+
* feature: LakeFormation: This release adds a new API support "AssumeDecoratedRoleWithSAML" and also release updates the corresponding documentation.
|
|
10
|
+
* feature: Lambda: Added support for customization of Consumer Group ID for MSK and Kafka Event Source Mappings.
|
|
11
|
+
* feature: LexModelsV2: This release introduces support for enhanced conversation design with the ability to define custom conversation flows with conditional branching and new bot responses.
|
|
12
|
+
* feature: RDS: Adds support for Internet Protocol Version 6 (IPv6) for RDS Aurora database clusters.
|
|
13
|
+
|
|
14
|
+
## 2.1196.0
|
|
15
|
+
* feature: Rekognition: This release adds APIs which support copying an Amazon Rekognition Custom Labels model and managing project policies across AWS account.
|
|
16
|
+
|
|
17
|
+
## 2.1195.0
|
|
18
|
+
* feature: CloudFront: Adds Http 3 support to distributions
|
|
19
|
+
* feature: Wisdom: This release introduces a new API PutFeedback that allows submitting feedback to Wisdom on content relevance.
|
|
20
|
+
|
|
5
21
|
## 2.1194.0
|
|
6
22
|
* feature: Amp: This release adds log APIs that allow customers to manage logging for their Amazon Managed Service for Prometheus workspaces.
|
|
7
23
|
* feature: ChimeSDKMessaging: The Amazon Chime SDK now supports channels with up to one million participants with elastic channels.
|
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.1197.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
|