Class: Aws::EC2::Types::SnapshotDiskContainer

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

The description of the disk image being imported.

Returns:

  • (String)


61082
61083
61084
61085
61086
61087
61088
61089
# File 'lib/aws-sdk-ec2/types.rb', line 61082

class SnapshotDiskContainer < Struct.new(
  :description,
  :format,
  :url,
  :user_bucket)
  SENSITIVE = [:url]
  include Aws::Structure
end

#formatString

The format of the disk image being imported.

Valid values: ‘VHD` | `VMDK` | `RAW`

Returns:

  • (String)


61082
61083
61084
61085
61086
61087
61088
61089
# File 'lib/aws-sdk-ec2/types.rb', line 61082

class SnapshotDiskContainer < Struct.new(
  :description,
  :format,
  :url,
  :user_bucket)
  SENSITIVE = [:url]
  include Aws::Structure
end

#urlString

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://..).

Returns:

  • (String)


61082
61083
61084
61085
61086
61087
61088
61089
# File 'lib/aws-sdk-ec2/types.rb', line 61082

class SnapshotDiskContainer < Struct.new(
  :description,
  :format,
  :url,
  :user_bucket)
  SENSITIVE = [:url]
  include Aws::Structure
end

#user_bucketTypes::UserBucket

The Amazon S3 bucket for the disk image.

Returns:



61082
61083
61084
61085
61086
61087
61088
61089
# File 'lib/aws-sdk-ec2/types.rb', line 61082

class SnapshotDiskContainer < Struct.new(
  :description,
  :format,
  :url,
  :user_bucket)
  SENSITIVE = [:url]
  include Aws::Structure
end