Class: Aws::EC2::Types::ImageDiskContainer
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EC2::Types::ImageDiskContainer
 
- Defined in:
- gems/aws-sdk-ec2/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.
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 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.
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 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
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 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.
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 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://..)
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 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.
| 44981 44982 44983 44984 44985 44986 44987 44988 44989 44990 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44981 class ImageDiskContainer < Struct.new( :description, :device_name, :format, :snapshot_id, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end |