We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd820a4 commit fda09fdCopy full SHA for fda09fd
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NOT RELEASED
4
5
+### Added
6
+
7
+- AWS api-change: Added `us-iso-west-1` region
8
9
## 1.1.1
10
11
### Fixed
src/DynamoDbClient.php
@@ -663,6 +663,13 @@ protected function getEndpointMetadata(?string $region): array
663
'signService' => 'dynamodb',
664
'signVersions' => ['v4'],
665
];
666
+ case 'us-iso-west-1':
667
+ return [
668
+ 'endpoint' => "https://dynamodb.$region.c2s.ic.gov",
669
+ 'signRegion' => $region,
670
+ 'signService' => 'dynamodb',
671
+ 'signVersions' => ['v4'],
672
+ ];
673
case 'us-isob-east-1':
674
return [
675
'endpoint' => "https://dynamodb.$region.sc2s.sgov.gov",
0 commit comments