AWSEC2LaunchTemplateBlockDeviceMappingRequest
Objective-C
@interface AWSEC2LaunchTemplateBlockDeviceMappingRequest
Swift
class AWSEC2LaunchTemplateBlockDeviceMappingRequest
Describes a block device mapping.
-
The device name (for example, /dev/sdh or xvdh).
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deviceName;
Swift
var deviceName: String? { get set }
-
Parameters used to automatically set up EBS volumes when the instance is launched.
Declaration
Objective-C
@property (nonatomic, strong) AWSEC2LaunchTemplateEbsBlockDeviceRequest *_Nullable ebs;
Swift
var ebs: AWSEC2LaunchTemplateEbsBlockDeviceRequest? { get set }
-
To omit the device from the block device mapping, specify an empty string.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable noDevice;
Swift
var noDevice: String? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable virtualName;
Swift
var virtualName: String? { get set }