Class: Aws::EC2::Types::InstanceBlockDeviceMapping

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Describes a block device mapping.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#device_nameString

The device name (for example, ‘/dev/sdh` or `xvdh`).

Returns:

  • (String)


38794
38795
38796
38797
38798
38799
# File 'lib/aws-sdk-ec2/types.rb', line 38794

class InstanceBlockDeviceMapping < Struct.new(
  :device_name,
  :ebs)
  SENSITIVE = []
  include Aws::Structure
end

#ebsTypes::EbsInstanceBlockDevice

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



38794
38795
38796
38797
38798
38799
# File 'lib/aws-sdk-ec2/types.rb', line 38794

class InstanceBlockDeviceMapping < Struct.new(
  :device_name,
  :ebs)
  SENSITIVE = []
  include Aws::Structure
end