Skip to content

Commit

Permalink
Updates SDK to v2.957.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 29, 2021
1 parent 002f0fb commit e9371bb
Show file tree
Hide file tree
Showing 20 changed files with 1,040 additions and 277 deletions.
27 changes: 27 additions & 0 deletions .changes/2.957.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "Chime",
"description": "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."
},
{
"type": "feature",
"category": "EC2",
"description": "This release adds support for G4ad xlarge and 2xlarge instances powered by AMD Radeon Pro V520 GPUs and AMD 2nd Generation EPYC processors"
},
{
"type": "feature",
"category": "IoTSiteWise",
"description": "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."
},
{
"type": "feature",
"category": "Iot",
"description": "Increase maximum credential duration of role alias to 12 hours."
},
{
"type": "feature",
"category": "SavingsPlans",
"description": "Documentation update for valid Savings Plans offering ID pattern"
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.956.0-->
<!--LATEST=2.957.0-->
<!--ENTRYINSERT-->

## 2.957.0
* 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.
* 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
* 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.
* feature: Iot: Increase maximum credential duration of role alias to 12 hours.
* feature: SavingsPlans: Documentation update for valid Savings Plans offering ID pattern

## 2.956.0
* feature: CloudFormation: SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.956.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.957.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
78 changes: 78 additions & 0 deletions apis/chime-2018-05-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -5459,6 +5459,84 @@
"hostPrefix": "messaging-"
}
},
"StartMeetingTranscription": {
"http": {
"requestUri": "/meetings/{meetingId}/transcription?operation=start",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"MeetingId",
"TranscriptionConfiguration"
],
"members": {
"MeetingId": {
"location": "uri",
"locationName": "meetingId"
},
"TranscriptionConfiguration": {
"type": "structure",
"members": {
"EngineTranscribeSettings": {
"type": "structure",
"required": [
"LanguageCode"
],
"members": {
"LanguageCode": {},
"VocabularyFilterMethod": {},
"VocabularyFilterName": {},
"VocabularyName": {},
"Region": {}
}
},
"EngineTranscribeMedicalSettings": {
"type": "structure",
"required": [
"LanguageCode",
"Specialty",
"Type"
],
"members": {
"LanguageCode": {},
"Specialty": {},
"Type": {},
"VocabularyName": {},
"Region": {}
}
}
}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"StopMeetingTranscription": {
"http": {
"requestUri": "/meetings/{meetingId}/transcription?operation=stop",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"MeetingId"
],
"members": {
"MeetingId": {
"location": "uri",
"locationName": "meetingId"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"TagAttendee": {
"http": {
"requestUri": "/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add",
Expand Down
Loading

0 comments on commit e9371bb

Please sign in to comment.