You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EC2::Types::ExportToS3TaskSpecification

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ExportToS3TaskSpecification as input to an Aws::Client method, you can use a vanilla Hash:

{
  container_format: "ova", # accepts ova
  disk_image_format: "VMDK", # accepts VMDK, RAW, VHD
  s3_bucket: "String",
  s3_prefix: "String",
}

Describes an instance export task.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#container_formatString

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

Possible values:

  • ova

Returns:

  • (String)

    The container format used to combine disk images with metadata (such as OVF).

#disk_image_formatString

The format for the exported image.

Possible values:

  • VMDK
  • RAW
  • VHD

Returns:

  • (String)

    The format for the exported image.

#s3_bucketString

The Amazon S3 bucket for the destination image. The destination bucket must exist and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com.

Returns:

  • (String)

    The Amazon S3 bucket for the destination image.

#s3_prefixString

The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + \'.\' + diskImageFormat.

Returns:

  • (String)

    The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + \'.\' + diskImageFormat.