Amazon.Glacier.Transfer.ArchiveTransferManager.DownloadAsync C# (CSharp) Метод

DownloadAsync() публичный Метод

Downloads an Amazon Glacier archive from the specified vault for the current user's account. Saves the archive to the specified file.

This method creates an Amazon SNS topic, and an Amazon SQS queue that is subscribed to that topic. It then initiates the archive retrieval job and polls the queue for the archive to be available. This polling takes about 4 hours. Once the archive is available, download will begin.

public DownloadAsync ( string vaultName, string archiveId, string filePath ) : System.Threading.Task
vaultName string The name of the vault to download the archive from.
archiveId string The unique ID of the archive to download.
filePath string The file path to save the archive to.
Результат System.Threading.Task
        public Task DownloadAsync(string vaultName, string archiveId, string filePath)
        {
            return DownloadAsync(vaultName, archiveId, filePath, new DownloadOptions());
        }
        /// <summary>

Same methods

ArchiveTransferManager::DownloadAsync ( string vaultName, string archiveId, string filePath, DownloadOptions options ) : System.Threading.Task