Skip to content

Commit

Permalink
Updates SDK to v2.671.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 6, 2020
1 parent 6608590 commit 7ea6d30
Show file tree
Hide file tree
Showing 15 changed files with 1,548 additions and 136 deletions.
12 changes: 12 additions & 0 deletions .changes/2.671.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CodeStarconnections",
"description": "Added support for tagging resources in AWS CodeStar Connections"
},
{
"type": "feature",
"category": "ComprehendMedical",
"description": "New Batch Ontology APIs for ICD-10 and RxNorm will provide batch capability of linking the information extracted by Comprehend Medical to medical ontologies. The new ontology linking APIs make it easy to detect medications and medical conditions in unstructured clinical text and link them to RxNorm and ICD-10-CM codes respectively. This new feature can help you reduce the cost, time and effort of processing large amounts of unstructured medical text with high accuracy."
}
]
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.670.0-->
<!--LATEST=2.671.0-->
<!--ENTRYINSERT-->

## 2.671.0
* feature: CodeStarconnections: Added support for tagging resources in AWS CodeStar Connections
* feature: ComprehendMedical: New Batch Ontology APIs for ICD-10 and RxNorm will provide batch capability of linking the information extracted by Comprehend Medical to medical ontologies. The new ontology linking APIs make it easy to detect medications and medical conditions in unstructured clinical text and link them to RxNorm and ICD-10-CM codes respectively. This new feature can help you reduce the cost, time and effort of processing large amounts of unstructured medical text with high accuracy.

## 2.670.0
* feature: EC2: With this release, you can call ModifySubnetAttribute with two new parameters: MapCustomerOwnedIpOnLaunch and CustomerOwnedIpv4Pool, to map a customerOwnedIpv4Pool to a subnet. You will also see these two new fields in the DescribeSubnets response. If your subnet has a customerOwnedIpv4Pool mapped, your network interface will get an auto assigned customerOwnedIpv4 address when placed onto an instance.
* feature: SSM: AWS Systems Manager Parameter Store launches new data type to support aliases in EC2 APIs
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.670.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.671.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
88 changes: 83 additions & 5 deletions apis/codestar-connections-2019-12-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
],
"members": {
"ProviderType": {},
"ConnectionName": {}
"ConnectionName": {},
"Tags": {
"shape": "S4"
}
}
},
"output": {
Expand All @@ -31,7 +34,10 @@
"ConnectionArn"
],
"members": {
"ConnectionArn": {}
"ConnectionArn": {},
"Tags": {
"shape": "S4"
}
}
}
},
Expand Down Expand Up @@ -64,7 +70,7 @@
"type": "structure",
"members": {
"Connection": {
"shape": "Sa"
"shape": "Se"
}
}
}
Expand All @@ -86,16 +92,88 @@
"Connections": {
"type": "list",
"member": {
"shape": "Sa"
"shape": "Se"
}
},
"NextToken": {}
}
}
},
"ListTagsForResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn"
],
"members": {
"ResourceArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Tags": {
"shape": "S4"
}
}
}
},
"TagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"Tags"
],
"members": {
"ResourceArn": {},
"Tags": {
"shape": "S4"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"TagKeys"
],
"members": {
"ResourceArn": {},
"TagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
}
},
"shapes": {
"Sa": {
"S4": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Key",
"Value"
],
"members": {
"Key": {},
"Value": {}
}
}
},
"Se": {
"type": "structure",
"members": {
"ConnectionName": {},
Expand Down
Loading

0 comments on commit 7ea6d30

Please sign in to comment.