# File lib/fog/aws/requests/storage/get_bucket_location.rb, line 17
        def get_bucket_location(bucket_name)
          request({
            :expects  => 200,
            :headers  => {},
            :bucket_name => bucket_name,
            :idempotent => true,
            :method   => 'GET',
            :parser   => Fog::Parsers::Storage::AWS::GetBucketLocation.new,
            :query    => {'location' => nil},
            :path_style => true
          })
        end