aws-sdk 2.1167.0 → 2.1168.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/metadata.json +3 -0
- package/apis/models.lex.v2-2020-08-07.min.json +112 -111
- package/apis/quicksight-2018-04-01.min.json +318 -205
- package/apis/rds-2014-10-31.waiters2.json +85 -0
- package/apis/rolesanywhere-2018-05-10.examples.json +5 -0
- package/apis/rolesanywhere-2018-05-10.min.json +819 -0
- package/apis/rolesanywhere-2018-05-10.paginators.json +24 -0
- package/apis/ssm-incidents-2018-05-10.min.json +20 -12
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/configservice.d.ts +12 -12
- package/clients/lexmodelsv2.d.ts +5 -0
- package/clients/quicksight.d.ts +182 -20
- package/clients/rds.d.ts +95 -79
- package/clients/rolesanywhere.d.ts +788 -0
- package/clients/rolesanywhere.js +18 -0
- package/clients/ssmincidents.d.ts +9 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +45 -8
- package/dist/aws-sdk.js +91 -3
- package/dist/aws-sdk.min.js +36 -36
- package/lib/config_service_placeholders.d.ts +2 -0
- 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.1168.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1168.0
|
|
6
|
+
* feature: LexModelsV2: This release introduces additional optional parameters "messageSelectionStrategy" to PromptSpecification, which enables the users to configure the bot to play messages in orderly manner.
|
|
7
|
+
* feature: QuickSight: This release allows customers to programmatically create QuickSight accounts with Enterprise and Enterprise + Q editions. It also releases allowlisting domains for embedding QuickSight dashboards at runtime through the embedding APIs.
|
|
8
|
+
* feature: RDS: Adds waiters support for DBCluster.
|
|
9
|
+
* feature: RolesAnywhere: IAM Roles Anywhere allows your workloads such as servers, containers, and applications to obtain temporary AWS credentials and use the same IAM roles and policies that you have configured for your AWS workloads to access AWS resources.
|
|
10
|
+
* feature: SSMIncidents: Adds support for tagging incident-record on creation by providing incident tags in the template within a response-plan.
|
|
11
|
+
|
|
5
12
|
## 2.1167.0
|
|
6
13
|
* feature: DMS: Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle.
|
|
7
14
|
|
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.1168.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
|