Skip to content

Commit d41cb04

Browse files
author
awstools
committed
Updates SDK to v2.1090.0
1 parent 9917399 commit d41cb04

14 files changed

+938
-107
lines changed

.changes/2.1090.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Comprehend",
5+
"description": "Amazon Comprehend now supports extracting the sentiment associated with entities such as brands, products and services from text documents."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "EC2MetadataCredentials",
10+
"description": "Allow EC2MetadataCredentials to extend the existing expiration when EC2 Metadata Service returns expired credentials or failure response."
11+
}
12+
]

.changes/next-release/feature-EC2MetadataCredentials-f20878a4.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1089.0-->
2+
<!--LATEST=2.1090.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1090.0
6+
* feature: Comprehend: Amazon Comprehend now supports extracting the sentiment associated with entities such as brands, products and services from text documents.
7+
* feature: EC2MetadataCredentials: Allow EC2MetadataCredentials to extend the existing expiration when EC2 Metadata Service returns expired credentials or failure response.
8+
59
## 2.1089.0
610
* feature: EKS: Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
711
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for reading timecode from AVCHD sources and now provides the ability to segment WebVTT at the same interval as the video and audio in HLS packages.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1089.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1090.0.min.js"></script>
3333

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

apis/comprehend-2017-11-27.min.json

Lines changed: 143 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,25 @@
682682
}
683683
}
684684
},
685+
"DescribeTargetedSentimentDetectionJob": {
686+
"input": {
687+
"type": "structure",
688+
"required": [
689+
"JobId"
690+
],
691+
"members": {
692+
"JobId": {}
693+
}
694+
},
695+
"output": {
696+
"type": "structure",
697+
"members": {
698+
"TargetedSentimentDetectionJobProperties": {
699+
"shape": "S4y"
700+
}
701+
}
702+
}
703+
},
685704
"DescribeTopicsDetectionJob": {
686705
"input": {
687706
"type": "structure",
@@ -696,7 +715,7 @@
696715
"type": "structure",
697716
"members": {
698717
"TopicsDetectionJobProperties": {
699-
"shape": "S4y"
718+
"shape": "S51"
700719
}
701720
}
702721
}
@@ -1328,6 +1347,42 @@
13281347
}
13291348
}
13301349
},
1350+
"ListTargetedSentimentDetectionJobs": {
1351+
"input": {
1352+
"type": "structure",
1353+
"members": {
1354+
"Filter": {
1355+
"type": "structure",
1356+
"members": {
1357+
"JobName": {},
1358+
"JobStatus": {},
1359+
"SubmitTimeBefore": {
1360+
"type": "timestamp"
1361+
},
1362+
"SubmitTimeAfter": {
1363+
"type": "timestamp"
1364+
}
1365+
}
1366+
},
1367+
"NextToken": {},
1368+
"MaxResults": {
1369+
"type": "integer"
1370+
}
1371+
}
1372+
},
1373+
"output": {
1374+
"type": "structure",
1375+
"members": {
1376+
"TargetedSentimentDetectionJobPropertiesList": {
1377+
"type": "list",
1378+
"member": {
1379+
"shape": "S4y"
1380+
}
1381+
},
1382+
"NextToken": {}
1383+
}
1384+
}
1385+
},
13311386
"ListTopicsDetectionJobs": {
13321387
"input": {
13331388
"type": "structure",
@@ -1357,7 +1412,7 @@
13571412
"TopicsDetectionJobPropertiesList": {
13581413
"type": "list",
13591414
"member": {
1360-
"shape": "S4y"
1415+
"shape": "S51"
13611416
}
13621417
},
13631418
"NextToken": {}
@@ -1664,6 +1719,46 @@
16641719
}
16651720
}
16661721
},
1722+
"StartTargetedSentimentDetectionJob": {
1723+
"input": {
1724+
"type": "structure",
1725+
"required": [
1726+
"InputDataConfig",
1727+
"OutputDataConfig",
1728+
"DataAccessRoleArn",
1729+
"LanguageCode"
1730+
],
1731+
"members": {
1732+
"InputDataConfig": {
1733+
"shape": "S3e"
1734+
},
1735+
"OutputDataConfig": {
1736+
"shape": "S3k"
1737+
},
1738+
"DataAccessRoleArn": {},
1739+
"JobName": {},
1740+
"LanguageCode": {},
1741+
"ClientRequestToken": {
1742+
"idempotencyToken": true
1743+
},
1744+
"VolumeKmsKeyId": {},
1745+
"VpcConfig": {
1746+
"shape": "S24"
1747+
},
1748+
"Tags": {
1749+
"shape": "S1n"
1750+
}
1751+
}
1752+
},
1753+
"output": {
1754+
"type": "structure",
1755+
"members": {
1756+
"JobId": {},
1757+
"JobArn": {},
1758+
"JobStatus": {}
1759+
}
1760+
}
1761+
},
16671762
"StartTopicsDetectionJob": {
16681763
"input": {
16691764
"type": "structure",
@@ -1813,6 +1908,24 @@
18131908
}
18141909
}
18151910
},
1911+
"StopTargetedSentimentDetectionJob": {
1912+
"input": {
1913+
"type": "structure",
1914+
"required": [
1915+
"JobId"
1916+
],
1917+
"members": {
1918+
"JobId": {}
1919+
}
1920+
},
1921+
"output": {
1922+
"type": "structure",
1923+
"members": {
1924+
"JobId": {},
1925+
"JobStatus": {}
1926+
}
1927+
}
1928+
},
18161929
"StopTrainingDocumentClassifier": {
18171930
"input": {
18181931
"type": "structure",
@@ -2588,6 +2701,34 @@
25882701
}
25892702
},
25902703
"S4y": {
2704+
"type": "structure",
2705+
"members": {
2706+
"JobId": {},
2707+
"JobArn": {},
2708+
"JobName": {},
2709+
"JobStatus": {},
2710+
"Message": {},
2711+
"SubmitTime": {
2712+
"type": "timestamp"
2713+
},
2714+
"EndTime": {
2715+
"type": "timestamp"
2716+
},
2717+
"InputDataConfig": {
2718+
"shape": "S3e"
2719+
},
2720+
"OutputDataConfig": {
2721+
"shape": "S3k"
2722+
},
2723+
"LanguageCode": {},
2724+
"DataAccessRoleArn": {},
2725+
"VolumeKmsKeyId": {},
2726+
"VpcConfig": {
2727+
"shape": "S24"
2728+
}
2729+
}
2730+
},
2731+
"S51": {
25912732
"type": "structure",
25922733
"members": {
25932734
"JobId": {},

0 commit comments

Comments
 (0)