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?

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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南