File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
src/Service/LocationService Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"variables" : {
3
- "${LATEST}" : " 3.280 .1"
3
+ "${LATEST}" : " 3.281 .1"
4
4
},
5
5
"endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
6
6
"services" : {
Original file line number Diff line number Diff line change 6
6
7
7
- Allow passing explicit null values for optional fields of input objects
8
8
9
+ ### Added
10
+
11
+ - AWS api-change: Added ` fips-us-gov-west-1 ` region
12
+
9
13
## 0.1.1
10
14
11
15
### Added
Original file line number Diff line number Diff line change @@ -257,6 +257,16 @@ protected function getEndpointMetadata(?string $region): array
257
257
$ region = Configuration::DEFAULT_REGION ;
258
258
}
259
259
260
+ switch ($ region ) {
261
+ case 'fips-us-gov-west-1 ' :
262
+ return [
263
+ 'endpoint ' => 'https://geo-fips.us-gov-west-1.amazonaws.com ' ,
264
+ 'signRegion ' => 'us-gov-west-1 ' ,
265
+ 'signService ' => 'geo ' ,
266
+ 'signVersions ' => ['v4 ' ],
267
+ ];
268
+ }
269
+
260
270
return [
261
271
'endpoint ' => "https://geo. $ region.amazonaws.com " ,
262
272
'signRegion ' => $ region ,
You can’t perform that action at this time.
0 commit comments