Struct rusoto_glacier::UploadMultipartPartInput [] [src]

pub struct UploadMultipartPartInput {
    pub account_id: String,
    pub body: Option<Vec<u8>>,
    pub checksum: Option<String>,
    pub range: Option<String>,
    pub upload_id: String,
    pub vault_name: String,
}

Provides options to upload a part of an archive in a multipart upload operation.

Fields

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.

The data to upload.

The SHA256 tree hash of the data being uploaded.

Identifies the range of bytes in the assembled archive that will be uploaded in this part. Amazon Glacier uses this information to assemble the archive in the proper sequence. The format of this header follows RFC 2616. An example header is Content-Range:bytes 0-4194303/*.

The upload ID of the multipart upload.

The name of the vault.

Trait Implementations

impl Default for UploadMultipartPartInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for UploadMultipartPartInput
[src]

[src]

Formats the value using the given formatter.

impl Clone for UploadMultipartPartInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more