pub struct EbsBlockDevice {
pub device: Option<String>,
pub volume_specification: Option<VolumeSpecification>,
}
Expand description
Configuration of requested EBS block device associated with the instance group.
Fields§
§device: Option<String>
The device name that is exposed to the instance, such as /dev/sdh.
volume_specification: Option<VolumeSpecification>
EBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster.
Trait Implementations§
Source§impl Clone for EbsBlockDevice
impl Clone for EbsBlockDevice
Source§fn clone(&self) -> EbsBlockDevice
fn clone(&self) -> EbsBlockDevice
Returns a duplicate 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 EbsBlockDevice
impl Debug for EbsBlockDevice
Source§impl Default for EbsBlockDevice
impl Default for EbsBlockDevice
Source§fn default() -> EbsBlockDevice
fn default() -> EbsBlockDevice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EbsBlockDevice
impl<'de> Deserialize<'de> for EbsBlockDevice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EbsBlockDevice
impl PartialEq for EbsBlockDevice
impl StructuralPartialEq for EbsBlockDevice
Auto Trait Implementations§
impl Freeze for EbsBlockDevice
impl RefUnwindSafe for EbsBlockDevice
impl Send for EbsBlockDevice
impl Sync for EbsBlockDevice
impl Unpin for EbsBlockDevice
impl UnwindSafe for EbsBlockDevice
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