pub struct Builder { /* private fields */ }
Expand description
A builder for LaunchTemplateBlockDeviceMappingRequest
.
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 name (for example, /dev/sdh or xvdh).
sourcepub fn set_device_name(self, input: Option<String>) -> Self
pub fn set_device_name(self, input: Option<String>) -> Self
The device name (for example, /dev/sdh or xvdh).
sourcepub fn virtual_name(self, input: impl Into<String>) -> Self
pub fn virtual_name(self, input: impl Into<String>) -> Self
The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.
sourcepub fn set_virtual_name(self, input: Option<String>) -> Self
pub fn set_virtual_name(self, input: Option<String>) -> Self
The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.
sourcepub fn ebs(self, input: LaunchTemplateEbsBlockDeviceRequest) -> Self
pub fn ebs(self, input: LaunchTemplateEbsBlockDeviceRequest) -> Self
Parameters used to automatically set up EBS volumes when the instance is launched.
sourcepub fn set_ebs(self, input: Option<LaunchTemplateEbsBlockDeviceRequest>) -> Self
pub fn set_ebs(self, input: Option<LaunchTemplateEbsBlockDeviceRequest>) -> Self
Parameters used to automatically set up EBS volumes when the instance is launched.
sourcepub fn no_device(self, input: impl Into<String>) -> Self
pub fn no_device(self, input: impl Into<String>) -> Self
To omit the device from the block device mapping, specify an empty string.
sourcepub fn set_no_device(self, input: Option<String>) -> Self
pub fn set_no_device(self, input: Option<String>) -> Self
To omit the device from the block device mapping, specify an empty string.
sourcepub fn build(self) -> LaunchTemplateBlockDeviceMappingRequest
pub fn build(self) -> LaunchTemplateBlockDeviceMappingRequest
Consumes the builder and constructs a LaunchTemplateBlockDeviceMappingRequest
.