Class: Aws::EC2::Types::DiskImageDescription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::DiskImageDescription
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes a disk image.
Constant Summary collapse
- SENSITIVE =
 [:import_manifest_url]
Instance Attribute Summary collapse
- 
  
    
      #checksum  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The checksum computed for the disk image.
 - 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The disk image format.
 - 
  
    
      #import_manifest_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A presigned URL for the import manifest stored in Amazon S3.
 - 
  
    
      #size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The size of the disk image, in GiB.
 
Instance Attribute Details
#checksum ⇒ String
The checksum computed for the disk image.
      32244 32245 32246 32247 32248 32249 32250 32251  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32244 class DiskImageDescription < Struct.new( :checksum, :format, :import_manifest_url, :size) SENSITIVE = [:import_manifest_url] include Aws::Structure end  | 
  
#format ⇒ String
The disk image format.
      32244 32245 32246 32247 32248 32249 32250 32251  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32244 class DiskImageDescription < Struct.new( :checksum, :format, :import_manifest_url, :size) SENSITIVE = [:import_manifest_url] include Aws::Structure end  | 
  
#import_manifest_url ⇒ String
A presigned URL for the import manifest stored in Amazon S3. For information about creating a presigned URL for an Amazon S3 object, read the “Query String Request Authentication Alternative” section of the [Authenticating REST Requests] topic in the *Amazon Simple Storage Service Developer Guide*.
For information about the import manifest referenced by this API action, see [VM Import Manifest].
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html [2]: docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html
      32244 32245 32246 32247 32248 32249 32250 32251  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32244 class DiskImageDescription < Struct.new( :checksum, :format, :import_manifest_url, :size) SENSITIVE = [:import_manifest_url] include Aws::Structure end  | 
  
#size ⇒ Integer
The size of the disk image, in GiB.
      32244 32245 32246 32247 32248 32249 32250 32251  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 32244 class DiskImageDescription < Struct.new( :checksum, :format, :import_manifest_url, :size) SENSITIVE = [:import_manifest_url] include Aws::Structure end  |