Skip to content

Commit df3d175

Browse files
Release v1.52.6 (2024-05-09) (#5256)
Release v1.52.6 (2024-05-09) === ### Service Client Updates * `service/bedrock-agent-runtime`: Updates service API and documentation * `service/pinpoint`: Updates service API and documentation * This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages. * `service/route53resolver`: Updates service documentation * `service/ssm-sap`: Updates service API, documentation, and paginators * `service/verifiedpermissions`: Updates service API and documentation
1 parent e7dfa8a commit df3d175

File tree

20 files changed

+2030
-132
lines changed

20 files changed

+2030
-132
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.52.6 (2024-05-09)
2+
===
3+
4+
### Service Client Updates
5+
* `service/bedrock-agent-runtime`: Updates service API and documentation
6+
* `service/pinpoint`: Updates service API and documentation
7+
* This release adds support for specifying email message headers for Email Templates, Campaigns, Journeys and Send Messages.
8+
* `service/route53resolver`: Updates service documentation
9+
* `service/ssm-sap`: Updates service API, documentation, and paginators
10+
* `service/verifiedpermissions`: Updates service API and documentation
11+
112
Release v1.52.5 (2024-05-08)
213
===
314

aws/endpoints/defaults.go

Lines changed: 78 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.52.5"
8+
const SDKVersion = "1.52.6"

models/apis/bedrock-agent-runtime/2023-07-26/api-2.json

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,11 @@
194194
"sensitive": true,
195195
"type": "string"
196196
},
197+
"AdditionalModelRequestFieldsKey": {
198+
"max": 100,
199+
"min": 1,
200+
"type": "string"
201+
},
197202
"AgentAliasId": {
198203
"max": 10,
199204
"min": 0,
@@ -473,6 +478,12 @@
473478
},
474479
"ExternalSourcesGenerationConfiguration": {
475480
"members": {
481+
"guardrailConfiguration": {
482+
"shape": "GuardrailConfiguration"
483+
},
484+
"inferenceConfig": {
485+
"shape": "InferenceConfig"
486+
},
476487
"promptTemplate": {
477488
"shape": "PromptTemplate"
478489
}
@@ -601,18 +612,66 @@
601612
},
602613
"GenerationConfiguration": {
603614
"members": {
615+
"guardrailConfiguration": {
616+
"shape": "GuardrailConfiguration"
617+
},
618+
"inferenceConfig": {
619+
"shape": "InferenceConfig"
620+
},
604621
"promptTemplate": {
605622
"shape": "PromptTemplate"
606623
}
607624
},
608625
"type": "structure"
609626
},
627+
"GuadrailAction": {
628+
"enum": [
629+
"INTERVENED",
630+
"NONE"
631+
],
632+
"type": "string"
633+
},
634+
"GuardrailConfiguration": {
635+
"members": {
636+
"guardrailId": {
637+
"shape": "GuardrailConfigurationGuardrailIdString"
638+
},
639+
"guardrailVersion": {
640+
"shape": "GuardrailConfigurationGuardrailVersionString"
641+
}
642+
},
643+
"required": [
644+
"guardrailId",
645+
"guardrailVersion"
646+
],
647+
"type": "structure"
648+
},
649+
"GuardrailConfigurationGuardrailIdString": {
650+
"max": 64,
651+
"min": 0,
652+
"pattern": "^[a-z0-9]+$",
653+
"type": "string"
654+
},
655+
"GuardrailConfigurationGuardrailVersionString": {
656+
"max": 5,
657+
"min": 1,
658+
"pattern": "^(([1-9][0-9]{0,7})|(DRAFT))$",
659+
"type": "string"
660+
},
610661
"Identifier": {
611662
"max": 1024,
612663
"min": 1,
613664
"sensitive": true,
614665
"type": "string"
615666
},
667+
"InferenceConfig": {
668+
"members": {
669+
"textInferenceConfig": {
670+
"shape": "TextInferenceConfig"
671+
}
672+
},
673+
"type": "structure"
674+
},
616675
"InferenceConfiguration": {
617676
"members": {
618677
"maximumLength": {
@@ -907,6 +966,12 @@
907966
"LambdaArn": {
908967
"type": "string"
909968
},
969+
"MaxTokens": {
970+
"box": true,
971+
"max": 65536,
972+
"min": 0,
973+
"type": "integer"
974+
},
910975
"MaximumLength": {
911976
"box": true,
912977
"max": 4096,
@@ -1154,6 +1219,19 @@
11541219
},
11551220
"type": "structure"
11561221
},
1222+
"RAGStopSequences": {
1223+
"max": 4,
1224+
"member": {
1225+
"shape": "RAGStopSequencesMemberString"
1226+
},
1227+
"min": 0,
1228+
"type": "list"
1229+
},
1230+
"RAGStopSequencesMemberString": {
1231+
"max": 1000,
1232+
"min": 1,
1233+
"type": "string"
1234+
},
11571235
"Rationale": {
11581236
"members": {
11591237
"text": {
@@ -1399,6 +1477,9 @@
13991477
"citations": {
14001478
"shape": "Citations"
14011479
},
1480+
"guardrailAction": {
1481+
"shape": "GuadrailAction"
1482+
},
14021483
"output": {
14031484
"shape": "RetrieveAndGenerateOutput"
14041485
},
@@ -1621,6 +1702,23 @@
16211702
"min": 0,
16221703
"type": "float"
16231704
},
1705+
"TextInferenceConfig": {
1706+
"members": {
1707+
"maxTokens": {
1708+
"shape": "MaxTokens"
1709+
},
1710+
"stopSequences": {
1711+
"shape": "RAGStopSequences"
1712+
},
1713+
"temperature": {
1714+
"shape": "Temperature"
1715+
},
1716+
"topP": {
1717+
"shape": "TopP"
1718+
}
1719+
},
1720+
"type": "structure"
1721+
},
16241722
"TextPromptTemplate": {
16251723
"max": 4000,
16261724
"min": 1,

0 commit comments

Comments
 (0)