Struct aws_sdk_ec2::model::VolumeModification [−][src]
#[non_exhaustive]pub struct VolumeModification {Show 16 fields
pub volume_id: Option<String>,
pub modification_state: Option<VolumeModificationState>,
pub status_message: Option<String>,
pub target_size: Option<i32>,
pub target_iops: Option<i32>,
pub target_volume_type: Option<VolumeType>,
pub target_throughput: Option<i32>,
pub target_multi_attach_enabled: Option<bool>,
pub original_size: Option<i32>,
pub original_iops: Option<i32>,
pub original_volume_type: Option<VolumeType>,
pub original_throughput: Option<i32>,
pub original_multi_attach_enabled: Option<bool>,
pub progress: Option<i64>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
}
Expand description
Describes the modification status of an EBS volume.
If the volume has never been modified, some element values will be null.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.volume_id: Option<String>
The ID of the volume.
modification_state: Option<VolumeModificationState>
The current modification state. The modification state is null for unmodified volumes.
status_message: Option<String>
A status message about the modification progress or failure.
target_size: Option<i32>
The target size of the volume, in GiB.
target_iops: Option<i32>
The target IOPS rate of the volume.
target_volume_type: Option<VolumeType>
The target EBS volume type of the volume.
target_throughput: Option<i32>
The target throughput of the volume, in MiB/s.
target_multi_attach_enabled: Option<bool>
The target setting for Amazon EBS Multi-Attach.
original_size: Option<i32>
The original size of the volume, in GiB.
original_iops: Option<i32>
The original IOPS rate of the volume.
original_volume_type: Option<VolumeType>
The original EBS volume type of the volume.
original_throughput: Option<i32>
The original throughput of the volume, in MiB/s.
original_multi_attach_enabled: Option<bool>
The original setting for Amazon EBS Multi-Attach.
progress: Option<i64>
The modification progress, from 0 to 100 percent complete.
start_time: Option<DateTime>
The modification start time.
end_time: Option<DateTime>
The modification completion or failure time.
Implementations
The current modification state. The modification state is null for unmodified volumes.
A status message about the modification progress or failure.
The target size of the volume, in GiB.
The target IOPS rate of the volume.
The target EBS volume type of the volume.
The target throughput of the volume, in MiB/s.
The target setting for Amazon EBS Multi-Attach.
The original size of the volume, in GiB.
The original IOPS rate of the volume.
The original EBS volume type of the volume.
The original throughput of the volume, in MiB/s.
The original setting for Amazon EBS Multi-Attach.
The modification progress, from 0 to 100 percent complete.
The modification start time.
Creates a new builder-style object to manufacture VolumeModification
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for VolumeModification
impl Send for VolumeModification
impl Sync for VolumeModification
impl Unpin for VolumeModification
impl UnwindSafe for VolumeModification
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more