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, DownloadOptions options ) : 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.
options DownloadOptions Additional options that can be used for the download.
Результат System.Threading.Task
        public Task DownloadJobAsync(string vaultName, string jobId, string filePath, DownloadOptions options)
        {
            var command = new DownloadJobCommand(this, vaultName, jobId, filePath, options);
            return command.ExecuteAsync();
        }

Same methods

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