Skip to content

Commit

Permalink
Updates SDK to v2.1450.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 1, 2023
1 parent e53e02d commit 39e7e8a
Show file tree
Hide file tree
Showing 19 changed files with 3,702 additions and 576 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1450.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "ChimeSDKMediaPipelines",
"description": "This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics."
},
{
"type": "feature",
"category": "Connect",
"description": "Amazon Connect adds the ability to read, create, update, delete, and list view resources, and adds the ability to read, create, delete, and list view versions."
},
{
"type": "feature",
"category": "IdentityStore",
"description": "New Identity Store content for China Region launch"
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1449.0-->
<!--LATEST=2.1450.0-->
<!--ENTRYINSERT-->

## 2.1450.0
* feature: ChimeSDKMediaPipelines: This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics.
* feature: Connect: Amazon Connect adds the ability to read, create, update, delete, and list view resources, and adds the ability to read, create, delete, and list view versions.
* feature: IdentityStore: New Identity Store content for China Region launch

## 2.1449.0
* feature: ChimeSDKMediaPipelines: This release adds support for feature Voice Enhancement for Call Recording as part of Amazon Chime SDK call analytics.
* feature: CloudHSM: Deprecating CloudHSM Classic API Service.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
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.1449.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1450.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
222 changes: 222 additions & 0 deletions apis/chime-sdk-media-pipelines-2021-07-15.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,70 @@
}
}
},
"GetSpeakerSearchTask": {
"http": {
"method": "GET",
"requestUri": "/media-insights-pipelines/{identifier}/speaker-search-tasks/{speakerSearchTaskId}",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"Identifier",
"SpeakerSearchTaskId"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"SpeakerSearchTaskId": {
"location": "uri",
"locationName": "speakerSearchTaskId"
}
}
},
"output": {
"type": "structure",
"members": {
"SpeakerSearchTask": {
"shape": "S4x"
}
}
}
},
"GetVoiceToneAnalysisTask": {
"http": {
"method": "GET",
"requestUri": "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks/{voiceToneAnalysisTaskId}",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"Identifier",
"VoiceToneAnalysisTaskId"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"VoiceToneAnalysisTaskId": {
"location": "uri",
"locationName": "voiceToneAnalysisTaskId"
}
}
},
"output": {
"type": "structure",
"members": {
"VoiceToneAnalysisTask": {
"shape": "S51"
}
}
}
},
"ListMediaCapturePipelines": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -507,6 +571,124 @@
}
}
},
"StartSpeakerSearchTask": {
"http": {
"requestUri": "/media-insights-pipelines/{identifier}/speaker-search-tasks?operation=start",
"responseCode": 201
},
"input": {
"type": "structure",
"required": [
"Identifier",
"VoiceProfileDomainArn"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"VoiceProfileDomainArn": {
"shape": "S3"
},
"KinesisVideoStreamSourceTaskConfiguration": {
"shape": "S5i"
},
"ClientRequestToken": {
"shape": "S5",
"idempotencyToken": true
}
}
},
"output": {
"type": "structure",
"members": {
"SpeakerSearchTask": {
"shape": "S4x"
}
}
}
},
"StartVoiceToneAnalysisTask": {
"http": {
"requestUri": "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks?operation=start",
"responseCode": 201
},
"input": {
"type": "structure",
"required": [
"Identifier",
"LanguageCode"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"LanguageCode": {},
"KinesisVideoStreamSourceTaskConfiguration": {
"shape": "S5i"
},
"ClientRequestToken": {
"shape": "S5",
"idempotencyToken": true
}
}
},
"output": {
"type": "structure",
"members": {
"VoiceToneAnalysisTask": {
"shape": "S51"
}
}
}
},
"StopSpeakerSearchTask": {
"http": {
"requestUri": "/media-insights-pipelines/{identifier}/speaker-search-tasks/{speakerSearchTaskId}?operation=stop",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"Identifier",
"SpeakerSearchTaskId"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"SpeakerSearchTaskId": {
"location": "uri",
"locationName": "speakerSearchTaskId"
}
}
}
},
"StopVoiceToneAnalysisTask": {
"http": {
"requestUri": "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks/{voiceToneAnalysisTaskId}?operation=stop",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"Identifier",
"VoiceToneAnalysisTaskId"
],
"members": {
"Identifier": {
"location": "uri",
"locationName": "identifier"
},
"VoiceToneAnalysisTaskId": {
"location": "uri",
"locationName": "voiceToneAnalysisTaskId"
}
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags?operation=tag-resource",
Expand Down Expand Up @@ -1414,6 +1596,46 @@
"shape": "S1f"
}
}
},
"S4x": {
"type": "structure",
"members": {
"SpeakerSearchTaskId": {},
"SpeakerSearchTaskStatus": {},
"CreatedTimestamp": {
"shape": "S1f"
},
"UpdatedTimestamp": {
"shape": "S1f"
}
}
},
"S51": {
"type": "structure",
"members": {
"VoiceToneAnalysisTaskId": {},
"VoiceToneAnalysisTaskStatus": {},
"CreatedTimestamp": {
"shape": "S1f"
},
"UpdatedTimestamp": {
"shape": "S1f"
}
}
},
"S5i": {
"type": "structure",
"required": [
"StreamArn",
"ChannelId"
],
"members": {
"StreamArn": {},
"ChannelId": {
"type": "integer"
},
"FragmentNumber": {}
}
}
}
}
Loading

0 comments on commit 39e7e8a

Please sign in to comment.