Struct rusoto_ec2::ImportVolumeTaskDetails[][src]

pub struct ImportVolumeTaskDetails {
    pub availability_zone: String,
    pub bytes_converted: i64,
    pub description: Option<String>,
    pub image: DiskImageDescription,
    pub volume: DiskImageVolumeDescription,
}

Describes an import volume task.

Fields

The Availability Zone where the resulting volume will reside.

The number of bytes converted so far.

The description you provided when starting the import volume task.

The image.

The volume.

Trait Implementations

impl Default for ImportVolumeTaskDetails
[src]

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

impl Debug for ImportVolumeTaskDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for ImportVolumeTaskDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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