aws-sdk 2.1097.0 → 2.1098.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/ce-2017-10-25.min.json +206 -125
- package/apis/location-2020-11-19.min.json +11 -8
- package/apis/location-2020-11-19.paginators.json +1 -0
- package/clients/costexplorer.d.ts +90 -4
- package/clients/ecs.d.ts +1 -1
- package/clients/lakeformation.d.ts +1 -1
- package/clients/location.d.ts +5 -0
- package/clients/polly.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +231 -136
- package/dist/aws-sdk.min.js +90 -90
- package/lib/core.js +1 -1
- package/lib/region_config_data.json +10 -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.1098.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1098.0
|
|
6
|
+
* bugfix: Route53: fix Route53 endpoints resolution for us-iso-* regions
|
|
7
|
+
* feature: CostExplorer: Added three new APIs to support tagging and resource-level authorization on Cost Explorer resources: TagResource, UntagResource, ListTagsForResource. Added optional parameters to CreateCostCategoryDefinition, CreateAnomalySubscription and CreateAnomalyMonitor APIs to support Tag On Create.
|
|
8
|
+
* feature: LakeFormation: The release fixes the incorrect permissions called out in the documentation - DESCRIBE_TAG, ASSOCIATE_TAG, DELETE_TAG, ALTER_TAG. This trebuchet release fixes the corresponding SDK and documentation.
|
|
9
|
+
* feature: Location: Amazon Location Service now includes a MaxResults parameter for GetDevicePositionHistory requests.
|
|
10
|
+
* feature: Polly: Amazon Polly adds new Catalan voice - Arlet. Arlet is available as Neural voice only.
|
|
11
|
+
|
|
5
12
|
## 2.1097.0
|
|
6
13
|
* feature: ChimeSDKMeetings: Add support for media replication to link multiple WebRTC media sessions together to reach larger and global audiences. Participants connected to a replica session can be granted access to join the primary session and can switch sessions with their existing WebRTC connection
|
|
7
14
|
* feature: ECR: This release includes a fix in the DescribeImageScanFindings paginated output.
|
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.1098.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
|