Skip to content

Commit 6f33496

Browse files
Update generated code (#1702)
* update generated code * Update src/Service/Ses/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 0e3b192 commit 6f33496

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.305.2"
3+
"${LATEST}": "3.305.3"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Ses/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2.
8+
- AWS api-change: Added `fips-us-gov-east-1` region
89

910
### Changed
1011

src/Service/Ses/src/SesClient.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,13 @@ protected function getEndpointMetadata(?string $region): array
125125
'signService' => 'ses',
126126
'signVersions' => ['v4'],
127127
];
128+
case 'fips-us-gov-east-1':
129+
return [
130+
'endpoint' => 'https://email-fips.us-gov-east-1.amazonaws.com',
131+
'signRegion' => 'us-gov-east-1',
132+
'signService' => 'ses',
133+
'signVersions' => ['v4'],
134+
];
128135
case 'fips-us-gov-west-1':
129136
return [
130137
'endpoint' => 'https://email-fips.us-gov-west-1.amazonaws.com',

0 commit comments

Comments
 (0)