Skip to content

Commit b7f1a02

Browse files
author
awstools
committed
Updates SDK to v2.1617.0
1 parent c237db3 commit b7f1a02

24 files changed

+1426
-484
lines changed

.changes/2.1617.0.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "BedrockAgentRuntime",
5+
"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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Pinpoint",
10+
"description": "This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "SsmSap",
15+
"description": "Added support for application-aware start/stop of SAP applications running on EC2 instances, with SSM for SAP"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "VerifiedPermissions",
20+
"description": "Adds policy effect and actions fields to Policy API's."
21+
}
22+
]

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1616.0-->
2+
<!--LATEST=2.1617.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1617.0
6+
* 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.
7+
* feature: Pinpoint: This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages.
8+
* feature: SsmSap: Added support for application-aware start/stop of SAP applications running on EC2 instances, with SSM for SAP
9+
* feature: VerifiedPermissions: Adds policy effect and actions fields to Policy API's.
10+
511
## 2.1616.0
612
* bugfix: Alexa for Business: Deprecates Alexa for Business
713
* bugfix: Honeycode: Deprecate Honeycode

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1616.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1617.0.min.js"></script>
6868

6969
You can also build a custom browser SDK with your specified set of AWS services.
7070
This can allow you to reduce the SDK's size, specify different API versions of

apis/bedrock-agent-runtime-2023-07-26.min.json

+64-2
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,17 @@
645645
"generationConfiguration": {
646646
"type": "structure",
647647
"members": {
648-
"promptTemplate": {
648+
"additionalModelRequestFields": {
649649
"shape": "S3u"
650+
},
651+
"guardrailConfiguration": {
652+
"shape": "S3x"
653+
},
654+
"inferenceConfig": {
655+
"shape": "S40"
656+
},
657+
"promptTemplate": {
658+
"shape": "S45"
650659
}
651660
}
652661
},
@@ -703,8 +712,17 @@
703712
"generationConfiguration": {
704713
"type": "structure",
705714
"members": {
706-
"promptTemplate": {
715+
"additionalModelRequestFields": {
707716
"shape": "S3u"
717+
},
718+
"guardrailConfiguration": {
719+
"shape": "S3x"
720+
},
721+
"inferenceConfig": {
722+
"shape": "S40"
723+
},
724+
"promptTemplate": {
725+
"shape": "S45"
708726
}
709727
}
710728
},
@@ -740,6 +758,7 @@
740758
"citations": {
741759
"shape": "Sr"
742760
},
761+
"guardrailAction": {},
743762
"output": {
744763
"type": "structure",
745764
"required": [
@@ -993,6 +1012,49 @@
9931012
}
9941013
},
9951014
"S3u": {
1015+
"type": "map",
1016+
"key": {},
1017+
"value": {
1018+
"type": "structure",
1019+
"members": {},
1020+
"document": true
1021+
}
1022+
},
1023+
"S3x": {
1024+
"type": "structure",
1025+
"required": [
1026+
"guardrailId",
1027+
"guardrailVersion"
1028+
],
1029+
"members": {
1030+
"guardrailId": {},
1031+
"guardrailVersion": {}
1032+
}
1033+
},
1034+
"S40": {
1035+
"type": "structure",
1036+
"members": {
1037+
"textInferenceConfig": {
1038+
"type": "structure",
1039+
"members": {
1040+
"maxTokens": {
1041+
"type": "integer"
1042+
},
1043+
"stopSequences": {
1044+
"type": "list",
1045+
"member": {}
1046+
},
1047+
"temperature": {
1048+
"type": "float"
1049+
},
1050+
"topP": {
1051+
"type": "float"
1052+
}
1053+
}
1054+
}
1055+
}
1056+
},
1057+
"S45": {
9961058
"type": "structure",
9971059
"members": {
9981060
"textPromptTemplate": {

0 commit comments

Comments
 (0)