Amazon.Glacier.Model.CompleteMultipartUploadRequest.CompleteMultipartUploadRequest C# (CSharp) Метод

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

Instantiates CompleteMultipartUploadRequest with the parameterized properties
public CompleteMultipartUploadRequest ( string vaultName, string uploadId, string archiveSize, string checksum ) : System
vaultName string The name of the vault.
uploadId string The upload ID of the multipart upload.
archiveSize string The total size, in bytes, of the entire archive. This value should be the sum of all the sizes of the individual parts that you uploaded.
checksum string The SHA256 tree hash of the entire archive. It is the tree hash of SHA256 tree hash of the individual parts. If the value you specify in the request does not match the SHA256 tree hash of the final assembled archive as computed by Amazon Glacier, Amazon Glacier returns an error and the request fails.
Результат System
        public CompleteMultipartUploadRequest(string vaultName, string uploadId, string archiveSize, string checksum)
        {
            _vaultName = vaultName;
            _uploadId = uploadId;
            _archiveSize = archiveSize;
            _checksum = checksum;
        }

Same methods

CompleteMultipartUploadRequest::CompleteMultipartUploadRequest ( ) : System
CompleteMultipartUploadRequest::CompleteMultipartUploadRequest ( string accountId, string vaultName, string uploadId, string archiveSize, string checksum ) : System