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

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

Instantiates CompleteMultipartUploadRequest with the parameterized properties
public CompleteMultipartUploadRequest ( string accountId, string vaultName, string uploadId, string archiveSize, string checksum ) : System
accountId string The AccountId value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single '-' (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens ('-') in the ID.
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 accountId, string vaultName, string uploadId, string archiveSize, string checksum)
        {
            _accountId = accountId;
            _vaultName = vaultName;
            _uploadId = uploadId;
            _archiveSize = archiveSize;
            _checksum = checksum;
        }

Same methods

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