Amazon.S3.Transfer.TransferUtility.ConstructDownloadRequest C# (CSharp) 메소드

ConstructDownloadRequest() 개인적인 정적인 메소드

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