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

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

Downloads the results from a completed archive retrieval. Saves the job output to the specified file.

If there is an error during download the download will be retried from the last point read. Once the download is complete the checksum will be compared.

public DownloadJobAsync ( string vaultName, string jobId, string filePath ) : System.Threading.Task
vaultName string The name of the vault to download the job output from.
jobId string The unique job ID for an archive retrieval job.
filePath string The file path to save the job output at.
Результат System.Threading.Task
        public Task DownloadJobAsync(string vaultName, string jobId, string filePath)
        {
            return DownloadJobAsync(vaultName, jobId, filePath, new DownloadOptions());
        }

Same methods

ArchiveTransferManager::DownloadJobAsync ( string vaultName, string jobId, string filePath, DownloadOptions options ) : System.Threading.Task