AWSEC2InstanceBlockDeviceMappingSpecification
Objective-C
@interface AWSEC2InstanceBlockDeviceMappingSpecification
Swift
class AWSEC2InstanceBlockDeviceMappingSpecification
Describes a block device mapping entry.
-
The device name (for example,
/dev/sdh
orxvdh
).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) AWSEC2EbsInstanceBlockDeviceSpecification *_Nullable ebs;
Swift
var ebs: AWSEC2EbsInstanceBlockDeviceSpecification? { get set }
-
suppress the specified device included in the block device mapping.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable noDevice;
Swift
var noDevice: String? { get set }
-
The virtual device name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable virtualName;
Swift
var virtualName: String? { get set }