Class: Aws::EC2::Types::SnapshotDiskContainer
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::SnapshotDiskContainer
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
The disk container object for the import snapshot request.
Constant Summary collapse
- SENSITIVE =
 [:url]
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the disk image being imported.
 - 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The format of the disk image being imported.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL to the Amazon S3-based disk image being imported.
 - 
  
    
      #user_bucket  ⇒ Types::UserBucket 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon S3 bucket for the disk image.
 
Instance Attribute Details
#description ⇒ String
The description of the disk image being imported.
      65792 65793 65794 65795 65796 65797 65798 65799  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 65792 class SnapshotDiskContainer < Struct.new( :description, :format, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#format ⇒ String
The format of the disk image being imported.
Valid values: ‘VHD` | `VMDK` | `RAW`
      65792 65793 65794 65795 65796 65797 65798 65799  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 65792 class SnapshotDiskContainer < Struct.new( :description, :format, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#url ⇒ String
The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon S3 URL (s3://..).
      65792 65793 65794 65795 65796 65797 65798 65799  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 65792 class SnapshotDiskContainer < Struct.new( :description, :format, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  | 
  
#user_bucket ⇒ Types::UserBucket
The Amazon S3 bucket for the disk image.
      65792 65793 65794 65795 65796 65797 65798 65799  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 65792 class SnapshotDiskContainer < Struct.new( :description, :format, :url, :user_bucket) SENSITIVE = [:url] include Aws::Structure end  |