Returns the location of a specified bucket. 
            
 Declaration Syntax
 Declaration Syntax| C# | 
public GetBucketLocationResponse GetBucketLocation( GetBucketLocationRequest request )
 Parameters
 Parameters- request (GetBucketLocationRequest)
- The GetBucketLocationRequest that defines the parameters of the operation.
 Return Value
 Return ValueReturns a GetBucketLocationResponse from S3.
 Remarks
 Remarks
            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.
            
 Examples
 ExamplesThis example shows how to retrieve the location of a bucket.
 CopyGetBucketLocation sample
CopyGetBucketLocation sample// 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);
 Exceptions
 Exceptions| Exception | Condition | 
|---|---|
| ArgumentNullException | |
| WebException | |
| AmazonS3Exception |