Amazon.S3.Transfer.TransferUtility.ConstructDownloadRequest C# (CSharp) Method

ConstructDownloadRequest() private static method

private static ConstructDownloadRequest ( string filePath, string bucketName, string key ) : TransferUtilityDownloadRequest
filePath string
bucketName string
key string
return TransferUtilityDownloadRequest
        private static TransferUtilityDownloadRequest ConstructDownloadRequest(string filePath, string bucketName, string key)
        {
            return new TransferUtilityDownloadRequest()
            {
                BucketName = bucketName,
                Key = key,
                FilePath = filePath
            };
        }