aws-sdk 2.1089.0 → 2.1092.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,23 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1089.0-->
2
+ <!--LATEST=2.1092.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1092.0
6
+ * bugfix: S3: Fixed a bug that S3 client no longer honor the computeChecksums config introduced in #3799. Previously only the members with httpChecksumRequired trait will be disabled by unseting computeChecksums config. S3 doesn't not honor the config because it has its own logic handling MD5 chechsums.
7
+ * feature: Chime: Chime VoiceConnector Logging APIs will now support MediaMetricLogs. Also CreateMeetingDialOut now returns AccessDeniedException.
8
+ * feature: Connect: This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists.
9
+ * feature: Lambda: Adds PrincipalOrgID support to AddPermission API. Customers can use it to manage permissions to lambda functions at AWS Organizations level.
10
+ * feature: Outposts: This release adds address filters for listSites
11
+
12
+ ## 2.1091.0
13
+ * feature: LexModelsV2: This release makes slotTypeId an optional parameter in CreateSlot and UpdateSlot APIs in Amazon Lex V2 for model building. Customers can create and update slots without specifying a slot type id.
14
+ * feature: TranscribeService: Documentation fix for API `StartMedicalTranscriptionJobRequest`, now showing min sample rate as 16khz
15
+ * feature: Transfer: Adding more descriptive error types for managed workflows
16
+
17
+ ## 2.1090.0
18
+ * feature: Comprehend: Amazon Comprehend now supports extracting the sentiment associated with entities such as brands, products and services from text documents.
19
+ * feature: EC2MetadataCredentials: Allow EC2MetadataCredentials to extend the existing expiration when EC2 Metadata Service returns expired credentials or failure response.
20
+
5
21
  ## 2.1089.0
6
22
  * feature: EKS: Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
7
23
  * 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.
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.1089.0.min.js"></script>
32
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1092.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
@@ -7315,6 +7315,9 @@
7315
7315
  "members": {
7316
7316
  "EnableSIPLogs": {
7317
7317
  "type": "boolean"
7318
+ },
7319
+ "EnableMediaMetricLogs": {
7320
+ "type": "boolean"
7318
7321
  }
7319
7322
  }
7320
7323
  },
@@ -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",
@@ -3607,6 +3607,10 @@
3607
3607
  },
3608
3608
  "ChatDurationInMinutes": {
3609
3609
  "type": "integer"
3610
+ },
3611
+ "SupportedMessagingContentTypes": {
3612
+ "type": "list",
3613
+ "member": {}
3610
3614
  }
3611
3615
  }
3612
3616
  },
@@ -3754,7 +3758,7 @@
3754
3758
  },
3755
3759
  "Name": {},
3756
3760
  "References": {
3757
- "shape": "Scm"
3761
+ "shape": "Sco"
3758
3762
  },
3759
3763
  "Description": {},
3760
3764
  "ClientToken": {
@@ -3957,7 +3961,7 @@
3957
3961
  "Name": {},
3958
3962
  "Description": {},
3959
3963
  "References": {
3960
- "shape": "Scm"
3964
+ "shape": "Sco"
3961
3965
  }
3962
3966
  }
3963
3967
  },
@@ -4588,19 +4592,19 @@
4588
4592
  "type": "structure",
4589
4593
  "members": {
4590
4594
  "LevelOne": {
4591
- "shape": "Se0"
4595
+ "shape": "Se2"
4592
4596
  },
4593
4597
  "LevelTwo": {
4594
- "shape": "Se0"
4598
+ "shape": "Se2"
4595
4599
  },
4596
4600
  "LevelThree": {
4597
- "shape": "Se0"
4601
+ "shape": "Se2"
4598
4602
  },
4599
4603
  "LevelFour": {
4600
- "shape": "Se0"
4604
+ "shape": "Se2"
4601
4605
  },
4602
4606
  "LevelFive": {
4603
- "shape": "Se0"
4607
+ "shape": "Se2"
4604
4608
  }
4605
4609
  }
4606
4610
  },
@@ -5073,7 +5077,7 @@
5073
5077
  }
5074
5078
  }
5075
5079
  },
5076
- "Scm": {
5080
+ "Sco": {
5077
5081
  "type": "map",
5078
5082
  "key": {},
5079
5083
  "value": {
@@ -5088,7 +5092,7 @@
5088
5092
  }
5089
5093
  }
5090
5094
  },
5091
- "Se0": {
5095
+ "Se2": {
5092
5096
  "type": "structure",
5093
5097
  "required": [
5094
5098
  "Name"