#[non_exhaustive]pub struct VolumeConfiguration {
pub volume_type: Option<String>,
pub volume_size: i32,
pub volume_baseline_iops: i32,
pub volume_burst_iops: i32,
pub volume_baseline_throughput: i32,
pub volume_burst_throughput: i32,
}Expand description
Describes the configuration of an Amazon Elastic Block Store (Amazon EBS) volume.
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_type: Option<String>The volume type.
This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.
volume_size: i32The size of the volume, in GiB.
volume_baseline_iops: i32The baseline IOPS of the volume.
volume_burst_iops: i32The burst IOPS of the volume.
volume_baseline_throughput: i32The baseline throughput of the volume.
volume_burst_throughput: i32The burst throughput of the volume.
Implementations
The volume type.
This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.
The size of the volume, in GiB.
The baseline IOPS of the volume.
The burst IOPS of the volume.
The baseline throughput of the volume.
The burst throughput of the volume.
Creates a new builder-style object to manufacture VolumeConfiguration
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 VolumeConfiguration
impl Send for VolumeConfiguration
impl Sync for VolumeConfiguration
impl Unpin for VolumeConfiguration
impl UnwindSafe for VolumeConfiguration
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