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

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

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 DownloadJob ( string vaultName, string jobId, string filePath ) : void
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.
Результат void
        public void DownloadJob(string vaultName, string jobId, string filePath)
        {
            DownloadJob(vaultName, jobId, filePath, new DownloadOptions());
        }

Same methods

ArchiveTransferManager::DownloadJob ( string vaultName, string jobId, string filePath, DownloadOptions options ) : void