LaunchConfigurationBlockDeviceMapping

data class LaunchConfigurationBlockDeviceMapping(val deviceName: String, val ebs: LaunchConfigurationBlockDevice? = null, val noDevice: Boolean? = null, val virtualName: String? = null)

BlockDeviceMapping is a property of AWS::AutoScaling::LaunchConfiguration that describes a block device mapping for an Auto Scaling group.

Constructors

Link copied to clipboard
constructor(deviceName: String, ebs: LaunchConfigurationBlockDevice? = null, noDevice: Boolean? = null, virtualName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The device name exposed to the EC2 instance (for example, /dev/sdh or xvdh).

Link copied to clipboard

Parameters used to automatically set up EBS volumes when an instance is launched.

Link copied to clipboard
val noDevice: Boolean? = null

Setting this value to true suppresses the specified device included in the block device mapping of the AMI.

Link copied to clipboard
val virtualName: String? = null

The name of the virtual device.