access amazon s3 bucket without region end point
Clash Royale CLAN TAG #URR8PPP access amazon s3 bucket without region end point Currently, I am accessing Amazon S3 using the Access key, Secret Access Key and region endpoint in Amazon S3 SDK which working fine. Like this client = new AmazonS3Client("some-access-key", "some-secret-key",Amazon.RegionEndpoint.USEast1) Is it possible to remove region endpoint because Bucket name will be one globally so why we need region endpoint? There must be some way through which we can able to get region endpoint of the bucket in Amazon S3 SDK?? or can work without region endpoint if "Yes" then How ?? if "No" then Why?? 1 Answer 1 A bucket will always have a region, when leaving it blank it will create the bucket in the US East region for you. There can be several reasons for choosing a region, from the API reference: By default, the bucket is created in the US East (N. Vi...