pub struct Builder { /* private fields */ }
Expand description
A builder for InstanceBlockDeviceMapping
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn device_name(self, input: impl Into<String>) -> Self
pub fn device_name(self, input: impl Into<String>) -> Self
The device to which these mappings apply.
sourcepub fn set_device_name(self, input: Option<String>) -> Self
pub fn set_device_name(self, input: Option<String>) -> Self
The device to which these mappings apply.
sourcepub fn ebs(self, input: EbsInstanceBlockDeviceSpecification) -> Self
pub fn ebs(self, input: EbsInstanceBlockDeviceSpecification) -> Self
Use to manage Amazon EBS-specific configuration for this mapping.
sourcepub fn set_ebs(self, input: Option<EbsInstanceBlockDeviceSpecification>) -> Self
pub fn set_ebs(self, input: Option<EbsInstanceBlockDeviceSpecification>) -> Self
Use to manage Amazon EBS-specific configuration for this mapping.
sourcepub fn virtual_name(self, input: impl Into<String>) -> Self
pub fn virtual_name(self, input: impl Into<String>) -> Self
Use to manage instance ephemeral devices.
sourcepub fn set_virtual_name(self, input: Option<String>) -> Self
pub fn set_virtual_name(self, input: Option<String>) -> Self
Use to manage instance ephemeral devices.
sourcepub fn no_device(self, input: impl Into<String>) -> Self
pub fn no_device(self, input: impl Into<String>) -> Self
Use to remove a mapping from the base image.
sourcepub fn set_no_device(self, input: Option<String>) -> Self
pub fn set_no_device(self, input: Option<String>) -> Self
Use to remove a mapping from the base image.
sourcepub fn build(self) -> InstanceBlockDeviceMapping
pub fn build(self) -> InstanceBlockDeviceMapping
Consumes the builder and constructs a InstanceBlockDeviceMapping
.