Class: Aws::EC2::Types::InstanceBlockDeviceMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::InstanceBlockDeviceMapping
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes a block device mapping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#device_name ⇒ String
The device name (for example,
/dev/sdh
orxvdh
). -
#ebs ⇒ Types::EbsInstanceBlockDevice
Parameters used to automatically set up EBS volumes when the instance is launched.
Instance Attribute Details
#device_name ⇒ String
The device name (for example, /dev/sdh
or xvdh
).
42364 42365 42366 42367 42368 42369 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42364 class InstanceBlockDeviceMapping < Struct.new( :device_name, :ebs) SENSITIVE = [] include Aws::Structure end |
#ebs ⇒ Types::EbsInstanceBlockDevice
Parameters used to automatically set up EBS volumes when the instance is launched.
42364 42365 42366 42367 42368 42369 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42364 class InstanceBlockDeviceMapping < Struct.new( :device_name, :ebs) SENSITIVE = [] include Aws::Structure end |