Class: Aws::EC2::Types::LaunchTemplateBlockDeviceMapping
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::LaunchTemplateBlockDeviceMapping
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
 - 
  
    
      #ebs  ⇒ Types::LaunchTemplateEbsBlockDevice 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the block device for an EBS volume.
 - 
  
    
      #no_device  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
To omit the device from the block device mapping, specify an empty string.
 - 
  
    
      #virtual_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The virtual device name (ephemeralN).
 
Instance Attribute Details
#device_name ⇒ String
The device name.
      47944 47945 47946 47947 47948 47949 47950 47951  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 47944 class LaunchTemplateBlockDeviceMapping < Struct.new( :device_name, :virtual_name, :ebs, :no_device) SENSITIVE = [] include Aws::Structure end  | 
  
#ebs ⇒ Types::LaunchTemplateEbsBlockDevice
Information about the block device for an EBS volume.
      47944 47945 47946 47947 47948 47949 47950 47951  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 47944 class LaunchTemplateBlockDeviceMapping < Struct.new( :device_name, :virtual_name, :ebs, :no_device) SENSITIVE = [] include Aws::Structure end  | 
  
#no_device ⇒ String
To omit the device from the block device mapping, specify an empty string.
      47944 47945 47946 47947 47948 47949 47950 47951  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 47944 class LaunchTemplateBlockDeviceMapping < Struct.new( :device_name, :virtual_name, :ebs, :no_device) SENSITIVE = [] include Aws::Structure end  | 
  
#virtual_name ⇒ String
The virtual device name (ephemeralN).
      47944 47945 47946 47947 47948 47949 47950 47951  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 47944 class LaunchTemplateBlockDeviceMapping < Struct.new( :device_name, :virtual_name, :ebs, :no_device) SENSITIVE = [] include Aws::Structure end  |