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 Resposta
1
Resposta aceita

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.

ESPECIALISTA
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas