Amazon.EC2.Import.DiskImageImporter.GetPresignedManifestUrl C# (CSharp) Метод

GetPresignedManifestUrl() приватный Метод

Constructs the presigned url to the import manifest in S3.
private GetPresignedManifestUrl ( string manifestFileKey ) : string
manifestFileKey string The S3 object key of the manifest file.
Результат string
        string GetPresignedManifestUrl(string manifestFileKey)
        {
            if (string.IsNullOrEmpty(_presignedManifestUrl))
                _presignedManifestUrl = S3Client.GeneratePreSignedURL(this.BucketName, manifestFileKey, AWSSDKUtils.CorrectedUtcNow.AddDays(UrlExpiryPeriod), null);

            return _presignedManifestUrl;
        }