aws-sdk 2.1441.0 → 2.1443.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 +11 -1
- package/README.md +1 -1
- package/apis/apigateway-2015-07-09.min.json +2 -1
- package/apis/ce-2017-10-25.min.json +3 -1
- package/apis/ec2-2016-11-15.min.json +1199 -1195
- package/apis/rds-2014-10-31.min.json +4 -0
- package/apis/verifiedpermissions-2021-12-01.min.json +127 -33
- package/clients/apigateway.d.ts +34 -30
- package/clients/costexplorer.d.ts +10 -2
- package/clients/ec2.d.ts +4 -2
- package/clients/globalaccelerator.d.ts +2 -2
- package/clients/polly.d.ts +1 -1
- package/clients/rds.d.ts +8 -0
- package/clients/verifiedpermissions.d.ts +11 -11
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +1211 -1200
- package/dist/aws-sdk.min.js +62 -62
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1443.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1443.0
|
6
|
+
* feature: APIGateway: This release adds RootResourceId to GetRestApi response.
|
7
|
+
* feature: EC2: Marking fields as sensitive on BundleTask and GetPasswordData
|
8
|
+
* feature: Polly: Amazon Polly adds 1 new voice - Zayd (ar-AE)
|
9
|
+
|
10
|
+
## 2.1442.0
|
11
|
+
* feature: CostExplorer: This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.
|
12
|
+
* feature: RDS: Adding parameters to CreateCustomDbEngineVersion reserved for future use.
|
13
|
+
* feature: VerifiedPermissions: Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.
|
14
|
+
|
5
15
|
## 2.1441.0
|
6
16
|
* feature: EC2: The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.
|
7
17
|
* feature: Finspace: Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.
|
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.1443.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
|