aws-sdk 2.1539.0 → 2.1541.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/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +1 -1
- package/apis/codebuild-2016-10-06.min.json +335 -119
- package/apis/codebuild-2016-10-06.paginators.json +5 -0
- package/apis/connectcases-2022-10-03.min.json +145 -30
- package/apis/connectcases-2022-10-03.paginators.json +5 -0
- package/apis/dynamodb-2012-08-10.min.json +83 -36
- package/apis/ecs-2014-11-13.min.json +172 -145
- package/clients/athena.d.ts +9 -5
- package/clients/cloud9.d.ts +1 -1
- package/clients/codebuild.d.ts +287 -2
- package/clients/connectcases.d.ts +122 -5
- package/clients/dynamodb.d.ts +68 -3
- package/clients/ec2.d.ts +21 -21
- package/clients/ecs.d.ts +36 -0
- package/clients/organizations.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +599 -304
- package/dist/aws-sdk.min.js +104 -104
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +60 -3
- package/package.json +1 -1
package/README.md
CHANGED
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
69
69
|
To use the SDK in the browser, simply add the following script tag to your
|
70
70
|
HTML pages:
|
71
71
|
|
72
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
72
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1541.0.min.js"></script>
|
73
73
|
|
74
74
|
You can also build a custom browser SDK with your specified set of AWS services.
|
75
75
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -949,7 +949,6 @@
|
|
949
949
|
"required": [
|
950
950
|
"WorkGroup",
|
951
951
|
"Name",
|
952
|
-
"Payload",
|
953
952
|
"Type"
|
954
953
|
],
|
955
954
|
"members": {
|
@@ -957,6 +956,7 @@
|
|
957
956
|
"Name": {},
|
958
957
|
"Payload": {},
|
959
958
|
"Type": {},
|
959
|
+
"NotebookS3LocationUri": {},
|
960
960
|
"ClientRequestToken": {}
|
961
961
|
}
|
962
962
|
},
|