Class: Aws::SecurityHub::Types::AwsEc2VolumeAttachment
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SecurityHub::Types::AwsEc2VolumeAttachment
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-securityhub/types.rb
 
Overview
An attachment to an Amazon EC2 volume.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #attach_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The datetime when the attachment initiated.
 - 
  
    
      #delete_on_termination  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the EBS volume is deleted when the EC2 instance is terminated.
 - 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the EC2 instance.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The attachment state of the volume.
 
Instance Attribute Details
#attach_time ⇒ String
The datetime when the attachment initiated.
      8863 8864 8865 8866 8867 8868 8869 8870  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 8863 class AwsEc2VolumeAttachment < Struct.new( :attach_time, :delete_on_termination, :instance_id, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#delete_on_termination ⇒ Boolean
Whether the EBS volume is deleted when the EC2 instance is terminated.
      8863 8864 8865 8866 8867 8868 8869 8870  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 8863 class AwsEc2VolumeAttachment < Struct.new( :attach_time, :delete_on_termination, :instance_id, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_id ⇒ String
The identifier of the EC2 instance.
      8863 8864 8865 8866 8867 8868 8869 8870  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 8863 class AwsEc2VolumeAttachment < Struct.new( :attach_time, :delete_on_termination, :instance_id, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The attachment state of the volume. Valid values are as follows:
- 
‘attaching`
 - 
‘attached`
 - 
‘busy`
 - 
‘detaching`
 - 
‘detached`
 
      8863 8864 8865 8866 8867 8868 8869 8870  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 8863 class AwsEc2VolumeAttachment < Struct.new( :attach_time, :delete_on_termination, :instance_id, :status) SENSITIVE = [] include Aws::Structure end  |