Struct aws_sdk_deadline::types::Ec2EbsVolume
source · #[non_exhaustive]pub struct Ec2EbsVolume {
pub size_gib: i32,
pub iops: i32,
pub throughput_mib: i32,
}Expand description
Specifies the EBS volume.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.size_gib: i32The EBS volume size in GiB.
iops: i32The IOPS per volume.
throughput_mib: i32The throughput per volume in MiB.
Implementations§
source§impl Ec2EbsVolume
impl Ec2EbsVolume
source§impl Ec2EbsVolume
impl Ec2EbsVolume
sourcepub fn builder() -> Ec2EbsVolumeBuilder
pub fn builder() -> Ec2EbsVolumeBuilder
Creates a new builder-style object to manufacture Ec2EbsVolume.
Trait Implementations§
source§impl Clone for Ec2EbsVolume
impl Clone for Ec2EbsVolume
source§fn clone(&self) -> Ec2EbsVolume
fn clone(&self) -> Ec2EbsVolume
Returns a copy of the value. Read more
1.0.0 · 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 Ec2EbsVolume
impl Debug for Ec2EbsVolume
source§impl PartialEq for Ec2EbsVolume
impl PartialEq for Ec2EbsVolume
source§fn eq(&self, other: &Ec2EbsVolume) -> bool
fn eq(&self, other: &Ec2EbsVolume) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for Ec2EbsVolume
Auto Trait Implementations§
impl Freeze for Ec2EbsVolume
impl RefUnwindSafe for Ec2EbsVolume
impl Send for Ec2EbsVolume
impl Sync for Ec2EbsVolume
impl Unpin for Ec2EbsVolume
impl UnwindSafe for Ec2EbsVolume
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> 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>
Creates a shared type from an unshared type.