AWS S3 bucket is being accessed from any region even though it is created in us-west-2

0

I am using Java SDK for aws to create S3 client to access s3 bucket connection status. Now, the current bucket which I am accessing is originally in region us-west-2. But during creating an s3 client(to access the bucket programatically) if I pass any other region other then us-west-2 also, the client is being created and I am getting the connection status as true. I am confused, shouldn't it return as failed if I am passing some other region than the region it is currently located in?

已提问 2 年前1178 查看次数
1 回答
1
已接受的回答

Buckets are global so you don't actually need to specify a region in your requests. Still, it's a good idea to provide the right region as it avoids a request going to us-east-1 to find out where your bucket is. Not only it is more efficient but it removes an unnecessary dependency on S3 in us-east-1 so one less thing to go wrong and cause an outage. I haven't tried passing a "wrong" region as you describe but given that specifying region is optional it makes sense to me that AWS would honour the request anyway rather than getting picky. Probably it just means you've added yet more overhead - the request goes to the wrong region, then us-east-1, then the right region.

专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则