aws-sdk 2.1411.0 → 2.1412.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/ec2-2016-11-15.min.json +281 -278
- package/apis/location-2020-11-19.min.json +79 -40
- package/apis/outposts-2019-12-03.paginators.json +12 -6
- package/apis/quicksight-2018-04-01.min.json +561 -528
- package/clients/ec2.d.ts +10 -5
- package/clients/location.d.ts +50 -14
- package/clients/outposts.d.ts +4 -4
- package/clients/quicksight.d.ts +53 -7
- package/clients/rds.d.ts +35 -35
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +363 -321
- package/dist/aws-sdk.min.js +70 -70
- package/lib/core.js +1 -1
- package/lib/credentials/shared_ini_file_credentials.js +2 -0
- 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.1412.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1412.0
|
6
|
+
* feature: EC2: Add Nitro Enclaves support on DescribeInstanceTypes
|
7
|
+
* feature: Location: This release adds support for authenticating with Amazon Location Service's Places & Routes APIs with an API Key. Also, with this release developers can publish tracked device position updates to Amazon EventBridge.
|
8
|
+
* feature: Outposts: Added paginator support to several APIs. Added the ISOLATED enum value to AssetState.
|
9
|
+
* feature: QuickSight: This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.
|
10
|
+
* feature: SharedIniFileCredentials: Make duration_seconds work for chained profiles
|
11
|
+
|
5
12
|
## 2.1411.0
|
6
13
|
* feature: KMS: Added Dry Run Feature to cryptographic and cross-account mutating KMS APIs (14 in all). This feature allows users to test their permissions and parameters before making the actual API call.
|
7
14
|
* feature: Mgn: This release introduces the Global view feature and new Replication state APIs.
|
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.1412.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
|