Skip to content

Commit

Permalink
Updates SDK to v2.620.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 17, 2020
1 parent d895bc0 commit c10ef6e
Show file tree
Hide file tree
Showing 23 changed files with 4,386 additions and 2,768 deletions.
22 changes: 22 additions & 0 deletions .changes/2.620.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "Cloud9",
"description": "AWS Cloud9 now supports the ability to tag Cloud9 development environments. "
},
{
"type": "feature",
"category": "DynamoDB",
"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. "
},
{
"type": "feature",
"category": "EC2",
"description": "Documentation updates for EC2"
},
{
"type": "feature",
"category": "Rekognition",
"description": "This update adds the ability to detect text in videos and adds filters to image and video text detection."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.619.0-->
<!--LATEST=2.620.0-->
<!--ENTRYINSERT-->

## 2.620.0
* feature: Cloud9: AWS Cloud9 now supports the ability to tag Cloud9 development environments.
* 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.
* feature: EC2: Documentation updates for EC2
* feature: Rekognition: This update adds the ability to detect text in videos and adds filters to image and video text detection.

## 2.619.0
* feature: EC2: You can now enable Multi-Attach on Provisioned IOPS io1 volumes through the create-volume API.
* feature: MediaTailor: AWS Elemental MediaTailor SDK now allows configuration of Personalization Threshold for HLS and DASH streams.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
85 changes: 80 additions & 5 deletions apis/cloud9-2017-09-23.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
"automaticStopTimeMinutes": {
"type": "integer"
},
"ownerArn": {}
"ownerArn": {},
"tags": {
"shape": "S9"
}
}
},
"output": {
Expand Down Expand Up @@ -59,7 +62,7 @@
"type": "structure",
"members": {
"membership": {
"shape": "Se"
"shape": "Si"
}
}
},
Expand Down Expand Up @@ -121,7 +124,7 @@
"memberships": {
"type": "list",
"member": {
"shape": "Se"
"shape": "Si"
}
},
"nextToken": {}
Expand Down Expand Up @@ -210,6 +213,64 @@
}
}
},
"ListTagsForResource": {
"input": {
"type": "structure",
"required": [
"ResourceARN"
],
"members": {
"ResourceARN": {}
}
},
"output": {
"type": "structure",
"members": {
"Tags": {
"shape": "S9"
}
}
}
},
"TagResource": {
"input": {
"type": "structure",
"required": [
"ResourceARN",
"Tags"
],
"members": {
"ResourceARN": {},
"Tags": {
"shape": "S9"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"input": {
"type": "structure",
"required": [
"ResourceARN",
"TagKeys"
],
"members": {
"ResourceARN": {},
"TagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UpdateEnvironment": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -248,7 +309,7 @@
"type": "structure",
"members": {
"membership": {
"shape": "Se"
"shape": "Si"
}
}
},
Expand All @@ -260,7 +321,21 @@
"type": "string",
"sensitive": true
},
"Se": {
"S9": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Key",
"Value"
],
"members": {
"Key": {},
"Value": {}
}
}
},
"Si": {
"type": "structure",
"members": {
"permissions": {},
Expand Down

0 comments on commit c10ef6e

Please sign in to comment.