aws-sdk 2.1062.0 → 2.1063.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 +7 -1
- package/README.md +1 -1
- package/apis/connect-2017-08-08.min.json +401 -135
- package/apis/connect-2017-08-08.paginators.json +12 -0
- package/apis/elasticfilesystem-2015-02-01.min.json +149 -21
- package/apis/fsx-2018-03-01.min.json +4 -1
- package/apis/guardduty-2017-11-28.min.json +339 -77
- package/clients/connect.d.ts +305 -1
- package/clients/efs.d.ts +131 -4
- package/clients/fsx.d.ts +15 -11
- package/clients/guardduty.d.ts +252 -1
- package/clients/route53recoveryreadiness.d.ts +275 -230
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +581 -175
- package/dist/aws-sdk.min.js +73 -73
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1063.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1063.0
|
|
6
|
+
* feature: Connect: This release adds support for custom vocabularies to be used with Contact Lens. Custom vocabularies improve transcription accuracy for one or more specific words.
|
|
7
|
+
* feature: EFS: Use Amazon EFS Replication to replicate your Amazon EFS file system in the AWS Region of your preference.
|
|
8
|
+
* feature: FSx: This release adds support for growing SSD storage capacity and growing/shrinking SSD IOPS for FSx for ONTAP file systems.
|
|
9
|
+
* feature: GuardDuty: Amazon GuardDuty expands threat detection coverage to protect Amazon Elastic Kubernetes Service (EKS) workloads.
|
|
10
|
+
|
|
5
11
|
## 2.1062.0
|
|
6
12
|
* bugfix: ParamValidator: fix the issue that the ParamValidator always fails on the document trait
|
|
7
13
|
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for 4K AV1 output resolutions & 10-bit AV1 color, the ability to ingest sidecar Dolby Vision XML metadata files, and the ability to flag WebVTT and IMSC tracks for accessibility in HLS.
|
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.1063.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
|