Skip to content

Commit

Permalink
Updates SDK to v2.600.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 8, 2020
1 parent 7d20865 commit 813b6c5
Show file tree
Hide file tree
Showing 18 changed files with 1,524 additions and 89 deletions.
12 changes: 12 additions & 0 deletions .changes/2.600.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "FMS",
"description": "AWS Firewall Manager now supports tagging, and tag-based access control, of policies."
},
{
"type": "feature",
"category": "Translate",
"description": "This release adds a new family of APIs for asynchronous batch translation service that provides option to translate large collection of text or HTML documents stored in Amazon S3 folder. This service accepts a batch of up to 5 GB in size per API call with each document not exceeding 1 MB size and the number of documents not exceeding 1 million per batch. See documentation for more information. "
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.599.0-->
<!--LATEST=2.600.0-->
<!--ENTRYINSERT-->

## 2.600.0
* feature: FMS: AWS Firewall Manager now supports tagging, and tag-based access control, of policies.
* feature: Translate: This release adds a new family of APIs for asynchronous batch translation service that provides option to translate large collection of text or HTML documents stored in Amazon S3 folder. This service accepts a batch of up to 5 GB in size per API call with each document not exceeding 1 MB size and the number of documents not exceeding 1 million per batch. See documentation for more information.

## 2.599.0
* feature: CodeBuild: Add encryption key override to StartBuild API in AWS CodeBuild.
* feature: MigrationHub: ListApplicationStates API provides a list of all application migration states
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.599.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.600.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
24 changes: 12 additions & 12 deletions apis/ce-2017-10-25.normal.json

Large diffs are not rendered by default.

75 changes: 75 additions & 0 deletions apis/fms-2018-01-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,25 @@
}
}
},
"ListTagsForResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn"
],
"members": {
"ResourceArn": {}
}
},
"output": {
"type": "structure",
"members": {
"TagList": {
"shape": "S1t"
}
}
}
},
"PutNotificationChannel": {
"input": {
"type": "structure",
Expand All @@ -303,6 +322,9 @@
"members": {
"Policy": {
"shape": "Ss"
},
"TagList": {
"shape": "S1t"
}
}
},
Expand All @@ -315,6 +337,45 @@
"PolicyArn": {}
}
}
},
"TagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"TagList"
],
"members": {
"ResourceArn": {},
"TagList": {
"shape": "S1t"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"TagKeys"
],
"members": {
"ResourceArn": {},
"TagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
}
},
"shapes": {
Expand Down Expand Up @@ -385,6 +446,20 @@
"type": "list",
"member": {}
}
},
"S1t": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Key",
"Value"
],
"members": {
"Key": {},
"Value": {}
}
}
}
}
}
Loading

0 comments on commit 813b6c5

Please # to comment.