Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.349.1"
"${LATEST}": "3.349.2"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/Route53/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Amazon Route 53 now supports the Asia Pacific (Taipei) Region (ap-east-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
- AWS api-change: Amazon Route 53 now supports the iso-e regions for private DNS Amazon VPCs and cloudwatch healthchecks.

## 2.9.0

Expand Down
2 changes: 2 additions & 0 deletions src/Service/Route53/src/Enum/VPCRegion.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ final class VPCRegion
public const CN_NORTH_1 = 'cn-north-1';
public const EU_CENTRAL_1 = 'eu-central-1';
public const EU_CENTRAL_2 = 'eu-central-2';
public const EU_ISOE_WEST_1 = 'eu-isoe-west-1';
public const EU_NORTH_1 = 'eu-north-1';
public const EU_SOUTH_1 = 'eu-south-1';
public const EU_SOUTH_2 = 'eu-south-2';
Expand Down Expand Up @@ -70,6 +71,7 @@ public static function exists(string $value): bool
self::CN_NORTH_1 => true,
self::EU_CENTRAL_1 => true,
self::EU_CENTRAL_2 => true,
self::EU_ISOE_WEST_1 => true,
self::EU_NORTH_1 => true,
self::EU_SOUTH_1 => true,
self::EU_SOUTH_2 => true,
Expand Down