Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add support for DXB region #2993

Merged
merged 1 commit into from
Aug 30, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,33 @@ public static List<Region> getRegions() {
updateRegion(region, "sqs", "sqs.ap-southeast-3.amazonaws.com", false, true);
updateRegion(region, "sts", "sts.ap-southeast-3.amazonaws.com", false, true);

// Support for Middle East(UAE) `me-central-1` region
region = new Region("me-central-1", "amazonaws.com");
ret.add(region);
updateRegion(region, "autoscaling", "autoscaling.me-central-1.amazonaws.com", false, true);
updateRegion(region, "cognito-identity", "cognito-identity.me-central-1.amazonaws.com",
false, true);
updateRegion(region, "cognito-idp", "cognito-idp.me-central-1.amazonaws.com", false, true);
updateRegion(region, "cognito-sync", "cognito-sync.me-central-1.amazonaws.com", false,
true);
updateRegion(region, "data.iot", "data.iot.me-central-1.amazonaws.com", false, true);
updateRegion(region, "dynamodb", "dynamodb.me-central-1.amazonaws.com", false, true);
updateRegion(region, "ec2", "ec2.me-central-1.amazonaws.com", false, true);
updateRegion(region, "elasticloadbalancing",
"elasticloadbalancing.me-central-1.amazonaws.com", false, true);
updateRegion(region, "firehose", "firehose.me-central-1.amazonaws.com", false, true);
updateRegion(region, "iot", "iot.me-central-1.amazonaws.com", false, true);
updateRegion(region, "kinesis", "kinesis.me-central-1.amazonaws.com", false, true);
updateRegion(region, "kms", "kms.me-central-1.amazonaws.com", false, true);
updateRegion(region, "lambda", "lambda.me-central-1.amazonaws.com", false, true);
updateRegion(region, "logs", "logs.me-central-1.amazonaws.com", false, true);
updateRegion(region, "polly", "polly.me-central-1.amazonaws.com", false, true);
updateRegion(region, "s3", "s3.me-central-1.amazonaws.com", false, true);
updateRegion(region, "sdb", "sdb.me-central-1.amazonaws.com", false, true);
updateRegion(region, "sns", "sns.me-central-1.amazonaws.com", false, true);
updateRegion(region, "sqs", "sqs.me-central-1.amazonaws.com", false, true);
updateRegion(region, "sts", "sts.me-central-1.amazonaws.com", false, true);

return ret;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ public enum Regions {
AF_SOUTH_1("af-south-1"),

/** ap-southeast-3. */
AP_SOUTHEAST_3("ap-southeast-3");
AP_SOUTHEAST_3("ap-southeast-3"),

/** me-central-1. */
ME_CENTRAL_1("me-central-1");

/**
* The default region that new customers in the US are encouraged to use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testGetRegionByEndpointWithBogusEndpoint() {
@Test
public void testGetRegionsForService() {
List<Region> regions = RegionUtils.getRegionsForService(ServiceAbbreviations.SimpleDB);
assertEquals(regions.size(), 10);
assertEquals(regions.size(), 11);
boolean usEast1 = false;
boolean usWest1 = false;
for (Region curr : regions) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,19 @@ public enum Region {
* bucket in this region.
* </p>
*/
AP_Jakarta("ap-southeast-3");
AP_Jakarta("ap-southeast-3"),

/**
* The Middle East (UAE) Region. This region uses Amazon S3 servers
* located in UAE.
* <p>
* When using buckets in this region, set the client endpoint to
* <code>s3-me-central-1.amazonaws.com</code> on all requests to these buckets
* to reduce any latency experienced after the first hour of creating a
* bucket in this region.
* </p>
*/
ME_UAE("me-central-1");

/**
* Used to extract the S3 regional id from an S3 end point. Note this
Expand Down