Skip to content

Commit

Permalink
Updates SDK to v2.1387.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 30, 2023
1 parent 3e813c5 commit 7bad38c
Show file tree
Hide file tree
Showing 41 changed files with 5,627 additions and 3,392 deletions.
52 changes: 52 additions & 0 deletions .changes/2.1387.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"type": "feature",
"category": "ChimeSDKVoice",
"description": "Added optional CallLeg field to StartSpeakerSearchTask API request"
},
{
"type": "feature",
"category": "Glue",
"description": "Added Runtime parameter to allow selection of Ray Runtime"
},
{
"type": "feature",
"category": "IoTFleetWise",
"description": "Campaigns now support selecting Timestream or S3 as the data destination, Signal catalogs now support \"Deprecation\" keyword released in VSS v2.1 and \"Comment\" keyword released in VSS v3.0"
},
{
"type": "feature",
"category": "Location",
"description": "This release adds API support for political views for the maps service APIs: CreateMap, UpdateMap, DescribeMap."
},
{
"type": "feature",
"category": "MemoryDB",
"description": "Amazon MemoryDB for Redis now supports AWS Identity and Access Management authentication access to Redis clusters starting with redis-engine version 7.0"
},
{
"type": "feature",
"category": "Personalize",
"description": "This release provides support for the exclusion of certain columns for training when creating a solution and creating or updating a recommender with Amazon Personalize."
},
{
"type": "feature",
"category": "Polly",
"description": "Amazon Polly adds 2 new voices - Sofie (da-DK) and Niamh (en-IE)"
},
{
"type": "feature",
"category": "SecurityHub",
"description": "Added new resource detail objects to ASFF, including resources for AwsGuardDutyDetector, AwsAmazonMqBroker, AwsEventSchemasRegistry, AwsAppSyncGraphQlApi and AwsStepFunctionStateMachine."
},
{
"type": "feature",
"category": "SecurityLake",
"description": "Log sources are now versioned. AWS log sources and custom sources will now come with a version identifier that enables producers to vend multiple schema versions to subscribers. Security Lake API have been refactored to more closely align with AWS API conventions."
},
{
"type": "feature",
"category": "WAFV2",
"description": "This SDK release provides customers the ability to use Header Order as a field to match."
}
]
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1386.0-->
<!--LATEST=2.1387.0-->
<!--ENTRYINSERT-->

## 2.1387.0
* feature: ChimeSDKVoice: Added optional CallLeg field to StartSpeakerSearchTask API request
* feature: Glue: Added Runtime parameter to allow selection of Ray Runtime
* feature: IoTFleetWise: Campaigns now support selecting Timestream or S3 as the data destination, Signal catalogs now support "Deprecation" keyword released in VSS v2.1 and "Comment" keyword released in VSS v3.0
* feature: Location: This release adds API support for political views for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
* feature: MemoryDB: Amazon MemoryDB for Redis now supports AWS Identity and Access Management authentication access to Redis clusters starting with redis-engine version 7.0
* feature: Personalize: This release provides support for the exclusion of certain columns for training when creating a solution and creating or updating a recommender with Amazon Personalize.
* feature: Polly: Amazon Polly adds 2 new voices - Sofie (da-DK) and Niamh (en-IE)
* feature: SecurityHub: Added new resource detail objects to ASFF, including resources for AwsGuardDutyDetector, AwsAmazonMqBroker, AwsEventSchemasRegistry, AwsAppSyncGraphQlApi and AwsStepFunctionStateMachine.
* feature: SecurityLake: Log sources are now versioned. AWS log sources and custom sources will now come with a version identifier that enables producers to vend multiple schema versions to subscribers. Security Lake API have been refactored to more closely align with AWS API conventions.
* feature: WAFV2: This SDK release provides customers the ability to use Header Order as a field to match.

## 2.1386.0
* feature: Connect: Documentation update for a new Initiation Method value in DescribeContact API
* feature: IoTWireless: Add Multicast Group support in Network Analyzer Configuration.
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.1386.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1387.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
3 changes: 2 additions & 1 deletion apis/chime-sdk-voice-2022-08-03.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -2241,7 +2241,8 @@
},
"TransactionId": {},
"VoiceProfileDomainId": {},
"ClientRequestToken": {}
"ClientRequestToken": {},
"CallLeg": {}
}
},
"output": {
Expand Down
11 changes: 11 additions & 0 deletions apis/chime-sdk-voice-2022-08-03.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3820,6 +3820,13 @@
},
"documentation": "<p>The details of an Amazon Chime SDK Voice Connector call.</p>"
},
"CallLegType": {
"type": "string",
"enum": [
"Caller",
"Callee"
]
},
"CallingName": {
"type": "string",
"pattern": "^$|^[a-zA-Z0-9 ]{2,15}$",
Expand Down Expand Up @@ -6823,6 +6830,10 @@
"ClientRequestToken": {
"shape": "ClientRequestId",
"documentation": "<p>The unique identifier for the client request. Use a different token for different speaker search tasks.</p>"
},
"CallLeg": {
"shape": "CallLegType",
"documentation": "<p>Specifies which call leg to stream for speaker search.</p>"
}
}
},
Expand Down
Loading

0 comments on commit 7bad38c

Please sign in to comment.