Skip to content

Commit 18c7908

Browse files
Update generated code (#1841)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent b8f7520 commit 18c7908

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Added `us-isof-east-1` and `us-isof-south-1` regions
8+
59
## 3.4.0
610

711
### Added

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "3.4-dev"
35+
"dev-master": "3.5-dev"
3636
}
3737
}
3838
}

src/DynamoDbClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -1181,6 +1181,14 @@ protected function getEndpointMetadata(?string $region): array
11811181
'signService' => 'dynamodb',
11821182
'signVersions' => ['v4'],
11831183
];
1184+
case 'us-isof-east-1':
1185+
case 'us-isof-south-1':
1186+
return [
1187+
'endpoint' => "https://dynamodb.$region.csp.hci.ic.gov",
1188+
'signRegion' => $region,
1189+
'signService' => 'dynamodb',
1190+
'signVersions' => ['v4'],
1191+
];
11841192
case 'us-isob-east-1':
11851193
return [
11861194
'endpoint' => 'https://dynamodb.us-isob-east-1.sc2s.sgov.gov',

0 commit comments

Comments
 (0)