Struct rusoto_snowball::DataTransfer[][src]

pub struct DataTransfer {
    pub bytes_transferred: Option<i64>,
    pub objects_transferred: Option<i64>,
    pub total_bytes: Option<i64>,
    pub total_objects: Option<i64>,
}

Defines the real-time status of a Snowball's data transfer while the appliance is at AWS. This data is only available while a job has a JobState value of InProgress, for both import and export jobs.

Fields

The number of bytes transferred between a Snowball and Amazon S3.

The number of objects transferred between a Snowball and Amazon S3.

The total bytes of data for a transfer between a Snowball and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

The total number of objects for a transfer between a Snowball and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

Trait Implementations

impl Default for DataTransfer
[src]

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

impl Debug for DataTransfer
[src]

Formats the value using the given formatter. Read more

impl Clone for DataTransfer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DataTransfer
[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