[][src]Struct rusoto_ec2::VolumeModification

pub struct VolumeModification {
    pub end_time: Option<String>,
    pub modification_state: Option<String>,
    pub original_iops: Option<i64>,
    pub original_size: Option<i64>,
    pub original_volume_type: Option<String>,
    pub progress: Option<i64>,
    pub start_time: Option<String>,
    pub status_message: Option<String>,
    pub target_iops: Option<i64>,
    pub target_size: Option<i64>,
    pub target_volume_type: Option<String>,
    pub volume_id: Option<String>,
}

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null.

Fields

end_time: Option<String>

The modification completion or failure time.

modification_state: Option<String>

The current modification state. The modification state is null for unmodified volumes.

original_iops: Option<i64>

The original IOPS rate of the volume.

original_size: Option<i64>

The original size of the volume.

original_volume_type: Option<String>

The original EBS volume type of the volume.

progress: Option<i64>

The modification progress, from 0 to 100 percent complete.

start_time: Option<String>

The modification start time.

status_message: Option<String>

A status message about the modification progress or failure.

target_iops: Option<i64>

The target IOPS rate of the volume.

target_size: Option<i64>

The target size of the volume, in GiB.

target_volume_type: Option<String>

The target EBS volume type of the volume.

volume_id: Option<String>

The ID of the volume.

Trait Implementations

impl PartialEq<VolumeModification> for VolumeModification[src]

impl Default for VolumeModification[src]

impl Clone for VolumeModification[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VolumeModification[src]

Auto Trait Implementations

impl Send for VolumeModification

impl Sync for VolumeModification

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self