Skip to content

Commit 824d950

Browse files
committed
update generated code
1 parent 182d628 commit 824d950

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
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.339.0"
3+
"${LATEST}": "3.339.3"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Sqs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: TODO
8+
59
## 2.3.0
610

711
### Added

src/Service/Sqs/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "2.3-dev"
31+
"dev-master": "2.4-dev"
3232
}
3333
}
3434
}

src/Service/Sqs/src/SqsClient.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -898,6 +898,20 @@ protected function getEndpointMetadata(?string $region): array
898898
'signService' => 'sqs',
899899
'signVersions' => ['v4'],
900900
];
901+
case 'fips-ca-central-1':
902+
return [
903+
'endpoint' => 'https://sqs-fips.ca-central-1.amazonaws.com',
904+
'signRegion' => 'ca-central-1',
905+
'signService' => 'sqs',
906+
'signVersions' => ['v4'],
907+
];
908+
case 'fips-ca-west-1':
909+
return [
910+
'endpoint' => 'https://sqs-fips.ca-west-1.amazonaws.com',
911+
'signRegion' => 'ca-west-1',
912+
'signService' => 'sqs',
913+
'signVersions' => ['v4'],
914+
];
901915
case 'fips-us-east-1':
902916
return [
903917
'endpoint' => 'https://sqs-fips.us-east-1.amazonaws.com',

0 commit comments

Comments
 (0)