pub struct VolumeModification {Show 16 fields
pub volume_id: String,
pub modification_state: String,
pub status_message: Option<String>,
pub target_size: Option<i32>,
pub target_iops: Option<i32>,
pub target_throughput: Option<i32>,
pub target_volume_type: Option<String>,
pub target_multi_attach_enabled: Option<bool>,
pub original_size: Option<i32>,
pub original_iops: Option<i32>,
pub original_throughput: Option<i32>,
pub original_volume_type: Option<String>,
pub original_multi_attach_enabled: Option<bool>,
pub progress: i64,
pub start_time: String,
pub end_time: Option<String>,
}Expand description
Pending or completed ModifyVolume operation, keyed by volume_id.
Fields§
§volume_id: String§modification_state: StringOne of “modifying”, “optimizing”, “completed”, “failed”.
status_message: Option<String>§target_size: Option<i32>§target_iops: Option<i32>§target_throughput: Option<i32>§target_volume_type: Option<String>§target_multi_attach_enabled: Option<bool>§original_size: Option<i32>§original_iops: Option<i32>§original_throughput: Option<i32>§original_volume_type: Option<String>§original_multi_attach_enabled: Option<bool>§progress: i64Progress percent, 0-100.
start_time: String§end_time: Option<String>Trait Implementations§
Source§impl Clone for VolumeModification
impl Clone for VolumeModification
Source§fn clone(&self) -> VolumeModification
fn clone(&self) -> VolumeModification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VolumeModification
impl Debug for VolumeModification
Source§impl From<&VolumeModification> for VolumeModificationView
impl From<&VolumeModification> for VolumeModificationView
Source§fn from(m: &VolumeModification) -> Self
fn from(m: &VolumeModification) -> Self
Converts to this type from the input type.
Source§impl From<VolumeModificationView> for VolumeModification
impl From<VolumeModificationView> for VolumeModification
Source§fn from(v: VolumeModificationView) -> Self
fn from(v: VolumeModificationView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VolumeModification
impl RefUnwindSafe for VolumeModification
impl Send for VolumeModification
impl Sync for VolumeModification
impl Unpin for VolumeModification
impl UnsafeUnpin for VolumeModification
impl UnwindSafe for VolumeModification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.