Skip to content

Commit c10ef6e

Browse files
author
awstools
committed
Updates SDK to v2.620.0
1 parent d895bc0 commit c10ef6e

23 files changed

+4386
-2768
lines changed

.changes/2.620.0.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Cloud9",
5+
"description": "AWS Cloud9 now supports the ability to tag Cloud9 development environments. "
6+
},
7+
{
8+
"type": "feature",
9+
"category": "DynamoDB",
10+
"description": "Amazon DynamoDB enables you to restore your DynamoDB backup or table data across AWS Regions such that the restored table is created in a different AWS Region from where the source table or backup resides. You can do cross-region restores between AWS commercial Regions, AWS China Regions, and AWS GovCloud (US) Regions. "
11+
},
12+
{
13+
"type": "feature",
14+
"category": "EC2",
15+
"description": "Documentation updates for EC2"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Rekognition",
20+
"description": "This update adds the ability to detect text in videos and adds filters to image and video text detection."
21+
}
22+
]

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.619.0-->
2+
<!--LATEST=2.620.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.620.0
6+
* feature: Cloud9: AWS Cloud9 now supports the ability to tag Cloud9 development environments.
7+
* feature: DynamoDB: Amazon DynamoDB enables you to restore your DynamoDB backup or table data across AWS Regions such that the restored table is created in a different AWS Region from where the source table or backup resides. You can do cross-region restores between AWS commercial Regions, AWS China Regions, and AWS GovCloud (US) Regions.
8+
* feature: EC2: Documentation updates for EC2
9+
* feature: Rekognition: This update adds the ability to detect text in videos and adds filters to image and video text detection.
10+
511
## 2.619.0
612
* feature: EC2: You can now enable Multi-Attach on Provisioned IOPS io1 volumes through the create-volume API.
713
* feature: MediaTailor: AWS Elemental MediaTailor SDK now allows configuration of Personalization Threshold for HLS and DASH streams.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ version.
2525
To use the SDK in the browser, simply add the following script tag to your
2626
HTML pages:
2727

28-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.619.0.min.js"></script>
28+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.620.0.min.js"></script>
2929

3030
You can also build a custom browser SDK with your specified set of AWS services.
3131
This can allow you to reduce the SDK's size, specify different API versions of

apis/cloud9-2017-09-23.min.json

+80-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
"automaticStopTimeMinutes": {
3131
"type": "integer"
3232
},
33-
"ownerArn": {}
33+
"ownerArn": {},
34+
"tags": {
35+
"shape": "S9"
36+
}
3437
}
3538
},
3639
"output": {
@@ -59,7 +62,7 @@
5962
"type": "structure",
6063
"members": {
6164
"membership": {
62-
"shape": "Se"
65+
"shape": "Si"
6366
}
6467
}
6568
},
@@ -121,7 +124,7 @@
121124
"memberships": {
122125
"type": "list",
123126
"member": {
124-
"shape": "Se"
127+
"shape": "Si"
125128
}
126129
},
127130
"nextToken": {}
@@ -210,6 +213,64 @@
210213
}
211214
}
212215
},
216+
"ListTagsForResource": {
217+
"input": {
218+
"type": "structure",
219+
"required": [
220+
"ResourceARN"
221+
],
222+
"members": {
223+
"ResourceARN": {}
224+
}
225+
},
226+
"output": {
227+
"type": "structure",
228+
"members": {
229+
"Tags": {
230+
"shape": "S9"
231+
}
232+
}
233+
}
234+
},
235+
"TagResource": {
236+
"input": {
237+
"type": "structure",
238+
"required": [
239+
"ResourceARN",
240+
"Tags"
241+
],
242+
"members": {
243+
"ResourceARN": {},
244+
"Tags": {
245+
"shape": "S9"
246+
}
247+
}
248+
},
249+
"output": {
250+
"type": "structure",
251+
"members": {}
252+
}
253+
},
254+
"UntagResource": {
255+
"input": {
256+
"type": "structure",
257+
"required": [
258+
"ResourceARN",
259+
"TagKeys"
260+
],
261+
"members": {
262+
"ResourceARN": {},
263+
"TagKeys": {
264+
"type": "list",
265+
"member": {}
266+
}
267+
}
268+
},
269+
"output": {
270+
"type": "structure",
271+
"members": {}
272+
}
273+
},
213274
"UpdateEnvironment": {
214275
"input": {
215276
"type": "structure",
@@ -248,7 +309,7 @@
248309
"type": "structure",
249310
"members": {
250311
"membership": {
251-
"shape": "Se"
312+
"shape": "Si"
252313
}
253314
}
254315
},
@@ -260,7 +321,21 @@
260321
"type": "string",
261322
"sensitive": true
262323
},
263-
"Se": {
324+
"S9": {
325+
"type": "list",
326+
"member": {
327+
"type": "structure",
328+
"required": [
329+
"Key",
330+
"Value"
331+
],
332+
"members": {
333+
"Key": {},
334+
"Value": {}
335+
}
336+
}
337+
},
338+
"Si": {
264339
"type": "structure",
265340
"members": {
266341
"permissions": {},

0 commit comments

Comments
 (0)