Skip to content

Commit

Permalink
Updates SDK to v2.1617.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 9, 2024
1 parent c237db3 commit b7f1a02
Show file tree
Hide file tree
Showing 24 changed files with 1,426 additions and 484 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1617.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "BedrockAgentRuntime",
"description": "This release adds support to provide guardrail configuration and modify inference parameters that are then used in RetrieveAndGenerate API in Agents for Amazon Bedrock."
},
{
"type": "feature",
"category": "Pinpoint",
"description": "This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages."
},
{
"type": "feature",
"category": "SsmSap",
"description": "Added support for application-aware start/stop of SAP applications running on EC2 instances, with SSM for SAP"
},
{
"type": "feature",
"category": "VerifiedPermissions",
"description": "Adds policy effect and actions fields to Policy API's."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1616.0-->
<!--LATEST=2.1617.0-->
<!--ENTRYINSERT-->

## 2.1617.0
* feature: BedrockAgentRuntime: This release adds support to provide guardrail configuration and modify inference parameters that are then used in RetrieveAndGenerate API in Agents for Amazon Bedrock.
* feature: Pinpoint: This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages.
* feature: SsmSap: Added support for application-aware start/stop of SAP applications running on EC2 instances, with SSM for SAP
* feature: VerifiedPermissions: Adds policy effect and actions fields to Policy API's.

## 2.1616.0
* bugfix: Alexa for Business: Deprecates Alexa for Business
* bugfix: Honeycode: Deprecate Honeycode
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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.1616.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1617.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
66 changes: 64 additions & 2 deletions apis/bedrock-agent-runtime-2023-07-26.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,17 @@
"generationConfiguration": {
"type": "structure",
"members": {
"promptTemplate": {
"additionalModelRequestFields": {
"shape": "S3u"
},
"guardrailConfiguration": {
"shape": "S3x"
},
"inferenceConfig": {
"shape": "S40"
},
"promptTemplate": {
"shape": "S45"
}
}
},
Expand Down Expand Up @@ -703,8 +712,17 @@
"generationConfiguration": {
"type": "structure",
"members": {
"promptTemplate": {
"additionalModelRequestFields": {
"shape": "S3u"
},
"guardrailConfiguration": {
"shape": "S3x"
},
"inferenceConfig": {
"shape": "S40"
},
"promptTemplate": {
"shape": "S45"
}
}
},
Expand Down Expand Up @@ -740,6 +758,7 @@
"citations": {
"shape": "Sr"
},
"guardrailAction": {},
"output": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -993,6 +1012,49 @@
}
},
"S3u": {
"type": "map",
"key": {},
"value": {
"type": "structure",
"members": {},
"document": true
}
},
"S3x": {
"type": "structure",
"required": [
"guardrailId",
"guardrailVersion"
],
"members": {
"guardrailId": {},
"guardrailVersion": {}
}
},
"S40": {
"type": "structure",
"members": {
"textInferenceConfig": {
"type": "structure",
"members": {
"maxTokens": {
"type": "integer"
},
"stopSequences": {
"type": "list",
"member": {}
},
"temperature": {
"type": "float"
},
"topP": {
"type": "float"
}
}
}
}
},
"S45": {
"type": "structure",
"members": {
"textPromptTemplate": {
Expand Down

0 comments on commit b7f1a02

Please sign in to comment.