aws-sdk 2.1433.0 → 2.1434.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 +472 -314
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +49 -46
- package/apis/omics-2022-11-28.min.json +10 -8
- package/clients/cloudtrail.d.ts +4 -4
- package/clients/connect.d.ts +141 -7
- package/clients/elbv2.d.ts +23 -9
- package/clients/omics.d.ts +11 -2
- package/clients/transfer.d.ts +11 -11
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +530 -363
- package/dist/aws-sdk.min.js +81 -81
- 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.1434.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1434.0
|
6
|
+
* feature: Connect: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.
|
7
|
+
* feature: ELBv2: This release enables configuring security groups for Network Load Balancers
|
8
|
+
* feature: Omics: This release adds instanceType to GetRunTask & ListRunTasks responses.
|
9
|
+
* feature: SecretsManager: Add additional InvalidRequestException to list of possible exceptions for ListSecret.
|
10
|
+
|
5
11
|
## 2.1433.0
|
6
12
|
* feature: ChimeSDKVoice: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name
|
7
13
|
* feature: FSx: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ_1.
|
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.1434.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
|