Skip to content

Commit

Permalink
Release v1.52.6 (2024-05-09) (#5256)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aws-sdk-go-automation committed May 9, 2024
1 parent e7dfa8a commit df3d175
Show file tree
Hide file tree
Showing 20 changed files with 2,030 additions and 132 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
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

Release v1.52.5 (2024-05-08)
===

Expand Down
78 changes: 78 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.52.5"
const SDKVersion = "1.52.6"
98 changes: 98 additions & 0 deletions models/apis/bedrock-agent-runtime/2023-07-26/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,11 @@
"sensitive": true,
"type": "string"
},
"AdditionalModelRequestFieldsKey": {
"max": 100,
"min": 1,
"type": "string"
},
"AgentAliasId": {
"max": 10,
"min": 0,
Expand Down Expand Up @@ -473,6 +478,12 @@
},
"ExternalSourcesGenerationConfiguration": {
"members": {
"guardrailConfiguration": {
"shape": "GuardrailConfiguration"
},
"inferenceConfig": {
"shape": "InferenceConfig"
},
"promptTemplate": {
"shape": "PromptTemplate"
}
Expand Down Expand Up @@ -601,18 +612,66 @@
},
"GenerationConfiguration": {
"members": {
"guardrailConfiguration": {
"shape": "GuardrailConfiguration"
},
"inferenceConfig": {
"shape": "InferenceConfig"
},
"promptTemplate": {
"shape": "PromptTemplate"
}
},
"type": "structure"
},
"GuadrailAction": {
"enum": [
"INTERVENED",
"NONE"
],
"type": "string"
},
"GuardrailConfiguration": {
"members": {
"guardrailId": {
"shape": "GuardrailConfigurationGuardrailIdString"
},
"guardrailVersion": {
"shape": "GuardrailConfigurationGuardrailVersionString"
}
},
"required": [
"guardrailId",
"guardrailVersion"
],
"type": "structure"
},
"GuardrailConfigurationGuardrailIdString": {
"max": 64,
"min": 0,
"pattern": "^[a-z0-9]+$",
"type": "string"
},
"GuardrailConfigurationGuardrailVersionString": {
"max": 5,
"min": 1,
"pattern": "^(([1-9][0-9]{0,7})|(DRAFT))$",
"type": "string"
},
"Identifier": {
"max": 1024,
"min": 1,
"sensitive": true,
"type": "string"
},
"InferenceConfig": {
"members": {
"textInferenceConfig": {
"shape": "TextInferenceConfig"
}
},
"type": "structure"
},
"InferenceConfiguration": {
"members": {
"maximumLength": {
Expand Down Expand Up @@ -907,6 +966,12 @@
"LambdaArn": {
"type": "string"
},
"MaxTokens": {
"box": true,
"max": 65536,
"min": 0,
"type": "integer"
},
"MaximumLength": {
"box": true,
"max": 4096,
Expand Down Expand Up @@ -1154,6 +1219,19 @@
},
"type": "structure"
},
"RAGStopSequences": {
"max": 4,
"member": {
"shape": "RAGStopSequencesMemberString"
},
"min": 0,
"type": "list"
},
"RAGStopSequencesMemberString": {
"max": 1000,
"min": 1,
"type": "string"
},
"Rationale": {
"members": {
"text": {
Expand Down Expand Up @@ -1399,6 +1477,9 @@
"citations": {
"shape": "Citations"
},
"guardrailAction": {
"shape": "GuadrailAction"
},
"output": {
"shape": "RetrieveAndGenerateOutput"
},
Expand Down Expand Up @@ -1621,6 +1702,23 @@
"min": 0,
"type": "float"
},
"TextInferenceConfig": {
"members": {
"maxTokens": {
"shape": "MaxTokens"
},
"stopSequences": {
"shape": "RAGStopSequences"
},
"temperature": {
"shape": "Temperature"
},
"topP": {
"shape": "TopP"
}
},
"type": "structure"
},
"TextPromptTemplate": {
"max": 4000,
"min": 1,
Expand Down

0 comments on commit df3d175

Please sign in to comment.