aws-sdk 2.1087.0 → 2.1090.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,19 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1087.0-->
2
+ <!--LATEST=2.1090.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
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
+
9
+ ## 2.1089.0
10
+ * feature: EKS: Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
11
+ * 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.
12
+
13
+ ## 2.1088.0
14
+ * feature: ChimeSDKMeetings: Adds support for Transcribe language identification feature to the StartMeetingTranscription API.
15
+ * feature: ECS: Amazon ECS UpdateService API now supports additional parameters: loadBalancers, propagateTags, enableECSManagedTags, and serviceRegistries
16
+
5
17
  ## 2.1087.0
6
18
  * feature: Connect: This release updates the *InstanceStorageConfig APIs so they support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_SEGMENTS. Use this resource type to enable streaming for real-time contact analysis and to associate the Kinesis stream where real-time contact analysis segments will be published.
7
19
  * feature: DevOpsGuru: Amazon DevOps Guru now integrates with Amazon CodeGuru Profiler. You can view CodeGuru Profiler recommendations for your AWS Lambda function in DevOps Guru. This feature is enabled by default for new customers as of 3/4/2022. Existing customers can enable this feature with UpdateEventSourcesConfig.
package/README.md CHANGED
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
29
29
  To use the SDK in the browser, simply add the following script tag to your
30
30
  HTML pages:
31
31
 
32
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1087.0.min.js"></script>
32
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1090.0.min.js"></script>
33
33
 
34
34
  You can also build a custom browser SDK with your specified set of AWS services.
35
35
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -326,9 +326,6 @@
326
326
  "members": {
327
327
  "EngineTranscribeSettings": {
328
328
  "type": "structure",
329
- "required": [
330
- "LanguageCode"
331
- ],
332
329
  "members": {
333
330
  "LanguageCode": {},
334
331
  "VocabularyFilterMethod": {},
@@ -342,7 +339,12 @@
342
339
  "ContentIdentificationType": {},
343
340
  "ContentRedactionType": {},
344
341
  "PiiEntityTypes": {},
345
- "LanguageModelName": {}
342
+ "LanguageModelName": {},
343
+ "IdentifyLanguage": {
344
+ "type": "boolean"
345
+ },
346
+ "LanguageOptions": {},
347
+ "PreferredLanguage": {}
346
348
  }
347
349
  },
348
350
  "EngineTranscribeMedicalSettings": {
@@ -682,6 +682,25 @@
682
682
  }
683
683
  }
684
684
  },
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
+ },
685
704
  "DescribeTopicsDetectionJob": {
686
705
  "input": {
687
706
  "type": "structure",
@@ -696,7 +715,7 @@
696
715
  "type": "structure",
697
716
  "members": {
698
717
  "TopicsDetectionJobProperties": {
699
- "shape": "S4y"
718
+ "shape": "S51"
700
719
  }
701
720
  }
702
721
  }
@@ -1328,6 +1347,42 @@
1328
1347
  }
1329
1348
  }
1330
1349
  },
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
+ },
1331
1386
  "ListTopicsDetectionJobs": {
1332
1387
  "input": {
1333
1388
  "type": "structure",
@@ -1357,7 +1412,7 @@
1357
1412
  "TopicsDetectionJobPropertiesList": {
1358
1413
  "type": "list",
1359
1414
  "member": {
1360
- "shape": "S4y"
1415
+ "shape": "S51"
1361
1416
  }
1362
1417
  },
1363
1418
  "NextToken": {}
@@ -1664,6 +1719,46 @@
1664
1719
  }
1665
1720
  }
1666
1721
  },
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
+ },
1667
1762
  "StartTopicsDetectionJob": {
1668
1763
  "input": {
1669
1764
  "type": "structure",
@@ -1813,6 +1908,24 @@
1813
1908
  }
1814
1909
  }
1815
1910
  },
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
+ },
1816
1929
  "StopTrainingDocumentClassifier": {
1817
1930
  "input": {
1818
1931
  "type": "structure",
@@ -2588,6 +2701,34 @@
2588
2701
  }
2589
2702
  },
2590
2703
  "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": {
2591
2732
  "type": "structure",
2592
2733
  "members": {
2593
2734
  "JobId": {},
@@ -50,6 +50,11 @@
50
50
  "output_token": "NextToken",
51
51
  "limit_key": "MaxResults"
52
52
  },
53
+ "ListTargetedSentimentDetectionJobs": {
54
+ "input_token": "NextToken",
55
+ "output_token": "NextToken",
56
+ "limit_key": "MaxResults"
57
+ },
53
58
  "ListTopicsDetectionJobs": {
54
59
  "input_token": "NextToken",
55
60
  "output_token": "NextToken",
@@ -1458,6 +1458,16 @@
1458
1458
  },
1459
1459
  "enableExecuteCommand": {
1460
1460
  "type": "boolean"
1461
+ },
1462
+ "enableECSManagedTags": {
1463
+ "type": "boolean"
1464
+ },
1465
+ "loadBalancers": {
1466
+ "shape": "S15"
1467
+ },
1468
+ "propagateTags": {},
1469
+ "serviceRegistries": {
1470
+ "shape": "S18"
1461
1471
  }
1462
1472
  }
1463
1473
  },