Returns the location of a specified bucket.

C# |
public GetBucketLocationResponse GetBucketLocation( GetBucketLocationRequest request )

- request (GetBucketLocationRequest)
- The GetBucketLocationRequest that defines the parameters of the operation.

Returns a GetBucketLocationResponse from S3.

The information returned can be used to determine the bucket's geographical location.
To determine the location of a bucket, you must be the bucket owner.

This example shows how to retrieve the location of a bucket.

// Create a client AmazonS3Client client = new AmazonS3Client(); // Construct request GetBucketLocationRequest request = new GetBucketLocationRequest { BucketName = "SampleBucket" }; // Issue call GetBucketLocationResponse response = client.GetBucketLocation(request); // View response data Console.WriteLine("Bucket location - {0}", response.Location);

Exception | Condition |
---|---|
ArgumentNullException | |
WebException | |
AmazonS3Exception |