Class: Aws::EC2::Types::ImageDiskContainer
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ImageDiskContainer
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the disk container object for an import image task.
Constant Summary collapse
- SENSITIVE =
 [:url]
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the disk image.
 - 
  
    
      #device_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The block device mapping for the disk.
 - 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The format of the disk image being imported.
 - 
  
    
      #snapshot_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the EBS snapshot to be used for importing the snapshot.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL to the Amazon S3-based disk image being imported.
 - 
  
    
      #user_bucket  ⇒ Types::UserBucket 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The S3 bucket for the disk image.
 
Instance Attribute Details
#description ⇒ String
The description of the disk image.
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#device_name ⇒ String
The block device mapping for the disk.
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#format ⇒ String
The format of the disk image being imported.
Valid values: ‘OVA` | `VHD` | `VHDX` | `VMDK` | `RAW`
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#snapshot_id ⇒ String
The ID of the EBS snapshot to be used for importing the snapshot.
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#url ⇒ String
The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#user_bucket ⇒ Types::UserBucket
The S3 bucket for the disk image.
      40666 40667 40668 40669 40670 40671 40672 40673 40674 40675  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40666 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  |