aws-sdk 2.956.0 → 2.957.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 +8 -1
- package/README.md +1 -1
- package/apis/chime-2018-05-01.min.json +78 -0
- package/apis/iotsitewise-2019-12-02.min.json +143 -78
- package/clients/chime.d.ts +99 -2
- package/clients/ec2.d.ts +89 -89
- package/clients/iot.d.ts +2 -2
- package/clients/iotsitewise.d.ts +74 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.957.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.957.0
|
|
6
|
+
* feature: Chime: Adds support for live transcription of meetings with Amazon Transcribe and Amazon Transcribe Medical. The new APIs, StartMeetingTranscription and StopMeetingTranscription, control the generation of user-attributed transcriptions sent to meeting clients via Amazon Chime SDK data messages.
|
|
7
|
+
* feature: EC2: This release adds support for G4ad xlarge and 2xlarge instances powered by AMD Radeon Pro V520 GPUs and AMD 2nd Generation EPYC processors
|
|
8
|
+
* feature: IoTSiteWise: Added support for AWS IoT SiteWise Edge. You can now create an AWS IoT SiteWise gateway that runs on AWS IoT Greengrass V2. With the gateway, you can collect local server and equipment data, process the data, and export the selected data from the edge to the AWS Cloud.
|
|
9
|
+
* feature: Iot: Increase maximum credential duration of role alias to 12 hours.
|
|
10
|
+
* feature: SavingsPlans: Documentation update for valid Savings Plans offering ID pattern
|
|
11
|
+
|
|
5
12
|
## 2.956.0
|
|
6
13
|
* feature: CloudFormation: SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.
|
|
7
14
|
|
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.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.957.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
|
|
@@ -5459,6 +5459,84 @@
|
|
|
5459
5459
|
"hostPrefix": "messaging-"
|
|
5460
5460
|
}
|
|
5461
5461
|
},
|
|
5462
|
+
"StartMeetingTranscription": {
|
|
5463
|
+
"http": {
|
|
5464
|
+
"requestUri": "/meetings/{meetingId}/transcription?operation=start",
|
|
5465
|
+
"responseCode": 200
|
|
5466
|
+
},
|
|
5467
|
+
"input": {
|
|
5468
|
+
"type": "structure",
|
|
5469
|
+
"required": [
|
|
5470
|
+
"MeetingId",
|
|
5471
|
+
"TranscriptionConfiguration"
|
|
5472
|
+
],
|
|
5473
|
+
"members": {
|
|
5474
|
+
"MeetingId": {
|
|
5475
|
+
"location": "uri",
|
|
5476
|
+
"locationName": "meetingId"
|
|
5477
|
+
},
|
|
5478
|
+
"TranscriptionConfiguration": {
|
|
5479
|
+
"type": "structure",
|
|
5480
|
+
"members": {
|
|
5481
|
+
"EngineTranscribeSettings": {
|
|
5482
|
+
"type": "structure",
|
|
5483
|
+
"required": [
|
|
5484
|
+
"LanguageCode"
|
|
5485
|
+
],
|
|
5486
|
+
"members": {
|
|
5487
|
+
"LanguageCode": {},
|
|
5488
|
+
"VocabularyFilterMethod": {},
|
|
5489
|
+
"VocabularyFilterName": {},
|
|
5490
|
+
"VocabularyName": {},
|
|
5491
|
+
"Region": {}
|
|
5492
|
+
}
|
|
5493
|
+
},
|
|
5494
|
+
"EngineTranscribeMedicalSettings": {
|
|
5495
|
+
"type": "structure",
|
|
5496
|
+
"required": [
|
|
5497
|
+
"LanguageCode",
|
|
5498
|
+
"Specialty",
|
|
5499
|
+
"Type"
|
|
5500
|
+
],
|
|
5501
|
+
"members": {
|
|
5502
|
+
"LanguageCode": {},
|
|
5503
|
+
"Specialty": {},
|
|
5504
|
+
"Type": {},
|
|
5505
|
+
"VocabularyName": {},
|
|
5506
|
+
"Region": {}
|
|
5507
|
+
}
|
|
5508
|
+
}
|
|
5509
|
+
}
|
|
5510
|
+
}
|
|
5511
|
+
}
|
|
5512
|
+
},
|
|
5513
|
+
"output": {
|
|
5514
|
+
"type": "structure",
|
|
5515
|
+
"members": {}
|
|
5516
|
+
}
|
|
5517
|
+
},
|
|
5518
|
+
"StopMeetingTranscription": {
|
|
5519
|
+
"http": {
|
|
5520
|
+
"requestUri": "/meetings/{meetingId}/transcription?operation=stop",
|
|
5521
|
+
"responseCode": 200
|
|
5522
|
+
},
|
|
5523
|
+
"input": {
|
|
5524
|
+
"type": "structure",
|
|
5525
|
+
"required": [
|
|
5526
|
+
"MeetingId"
|
|
5527
|
+
],
|
|
5528
|
+
"members": {
|
|
5529
|
+
"MeetingId": {
|
|
5530
|
+
"location": "uri",
|
|
5531
|
+
"locationName": "meetingId"
|
|
5532
|
+
}
|
|
5533
|
+
}
|
|
5534
|
+
},
|
|
5535
|
+
"output": {
|
|
5536
|
+
"type": "structure",
|
|
5537
|
+
"members": {}
|
|
5538
|
+
}
|
|
5539
|
+
},
|
|
5462
5540
|
"TagAttendee": {
|
|
5463
5541
|
"http": {
|
|
5464
5542
|
"requestUri": "/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add",
|