class AWS::EC2::ExportTask


the image will be exported to.
@attr_reader [String] s3_key The key of the Amazon S3 object
the image will be exported to.
@attr_reader [String] s3_bucket The name of the Amazon S3 bucket
combine disk images with metadata (such as OVF).
@attr_reader [String] container_format The container format used to
image.
@attr_reader [String] disk_image_format The format for the exported
environment.
@attr_reader [String] target_environment The target virtualization
@attr_reader [String] instance_id ID of instance being exported.
export task.
@attr_reader [String] status_message Status message related to the
Valid values :active, :cancelling, :cancelled and :completed.
@attr_reader [Symbol] state State of the conversion task.
Description of the resource being exported.
@attr_reader [String] description

def cancel

Returns:
  • (nil) -
def cancel
  client.cancel_export_task(:export_task_id => export_task_id)
  nil
end

def initialize export_task_id, options = {}

Other tags:
    Private: -
def initialize export_task_id, options = {}
  @export_task_id = export_task_id
  super
end

def instance

Returns:
  • (Instance) -
def instance
  Instance.new(instance_id, :config => config)
end

def s3_bucket

Returns:
  • (S3::Bucket) -
def s3_bucket
  S3::Bucket.new(s3_bucket_name, :config => config)
end

def s3_object

Returns:
  • (S3::S3Object) -
def s3_object
  s3_bucket.objects[s3_key]
end