Struct rusoto_glacier::ListMultipartUploadsInput[][src]

pub struct ListMultipartUploadsInput {
    pub account_id: String,
    pub limit: Option<String>,
    pub marker: Option<String>,
    pub vault_name: String,
}

Provides options for retrieving list of in-progress multipart uploads for an Amazon Glacier vault.

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.

Specifies the maximum number of uploads returned in the response body. If this value is not specified, the List Uploads operation returns up to 1,000 uploads.

An opaque string used for pagination. This value specifies the upload at which the listing of uploads should begin. Get the marker value from a previous List Uploads response. You need only include the marker if you are continuing the pagination of results started in a previous List Uploads request.

The name of the vault.

Trait Implementations

impl Default for ListMultipartUploadsInput
[src]

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

impl Debug for ListMultipartUploadsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListMultipartUploadsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListMultipartUploadsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations