Amazon.S3.Util.BucketRegionDetector.GetHeadBucketPreSignedUrl C# (CSharp) Method

GetHeadBucketPreSignedUrl() private static method

private static GetHeadBucketPreSignedUrl ( string bucketName, ImmutableCredentials credentials ) : string
bucketName string
credentials Amazon.Runtime.ImmutableCredentials
return string
        private static string GetHeadBucketPreSignedUrl(string bucketName, ImmutableCredentials credentials)
        {
            // IMPORTANT:
            // This method is called as part of the request pipeline.
            // If the pipeline were to be invoked here it would cause
            // unwanted recursion.
            // As such, the only reason it's OK to use an S3Client here
            // is because this code is using a method that doesn't go
            // through the request pipeline: GetPreSignedURLInternal
            var request = new GetPreSignedUrlRequest
            {
                BucketName = bucketName,
                Expires = DateTime.Now.AddDays(1),
                Verb = HttpVerb.HEAD,
                Protocol = Protocol.HTTP
            };
            // all buckets accessible via USEast1
            using (var s3Client = GetUsEast1ClientFromCredentials(credentials))
            {
                return s3Client.GetPreSignedURLInternal(request, false);
            }
        }