#[non_exhaustive]pub struct InstanceBlockDeviceMapping { /* private fields */ }
Expand description
Defines block device mappings for the instance used to configure your image.
Implementations§
source§impl InstanceBlockDeviceMapping
impl InstanceBlockDeviceMapping
sourcepub fn device_name(&self) -> Option<&str>
pub fn device_name(&self) -> Option<&str>
The device to which these mappings apply.
sourcepub fn ebs(&self) -> Option<&EbsInstanceBlockDeviceSpecification>
pub fn ebs(&self) -> Option<&EbsInstanceBlockDeviceSpecification>
Use to manage Amazon EBS-specific configuration for this mapping.
sourcepub fn virtual_name(&self) -> Option<&str>
pub fn virtual_name(&self) -> Option<&str>
Use to manage instance ephemeral devices.
source§impl InstanceBlockDeviceMapping
impl InstanceBlockDeviceMapping
sourcepub fn builder() -> InstanceBlockDeviceMappingBuilder
pub fn builder() -> InstanceBlockDeviceMappingBuilder
Creates a new builder-style object to manufacture InstanceBlockDeviceMapping
.
Trait Implementations§
source§impl Clone for InstanceBlockDeviceMapping
impl Clone for InstanceBlockDeviceMapping
source§fn clone(&self) -> InstanceBlockDeviceMapping
fn clone(&self) -> InstanceBlockDeviceMapping
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 InstanceBlockDeviceMapping
impl Debug for InstanceBlockDeviceMapping
source§impl PartialEq<InstanceBlockDeviceMapping> for InstanceBlockDeviceMapping
impl PartialEq<InstanceBlockDeviceMapping> for InstanceBlockDeviceMapping
source§fn eq(&self, other: &InstanceBlockDeviceMapping) -> bool
fn eq(&self, other: &InstanceBlockDeviceMapping) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.