Class: Aws::EC2::Types::EbsInstanceBlockDeviceSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::EbsInstanceBlockDeviceSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes information used to set up an EBS volume specified in a block device mapping.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #delete_on_termination  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the volume is deleted on instance termination.
 - 
  
    
      #volume_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the EBS volume.
 
Instance Attribute Details
#delete_on_termination ⇒ Boolean
Indicates whether the volume is deleted on instance termination.
      32682 32683 32684 32685 32686 32687  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32682 class EbsInstanceBlockDeviceSpecification < Struct.new( :volume_id, :delete_on_termination) SENSITIVE = [] include Aws::Structure end  | 
  
#volume_id ⇒ String
The ID of the EBS volume.
      32682 32683 32684 32685 32686 32687  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32682 class EbsInstanceBlockDeviceSpecification < Struct.new( :volume_id, :delete_on_termination) SENSITIVE = [] include Aws::Structure end  |