Skip to content

Describe Export Tasks

ec2_describe_export_tasks R Documentation

Describes the specified export instance tasks or all of your export instance tasks

Description

Describes the specified export instance tasks or all of your export instance tasks.

Usage

ec2_describe_export_tasks(ExportTaskIds, Filters)

Arguments

ExportTaskIds

The export task IDs.

Filters

the filters for the export tasks.

Value

A list with the following syntax:

list(
  ExportTasks = list(
    list(
      Description = "string",
      ExportTaskId = "string",
      ExportToS3Task = list(
        ContainerFormat = "ova",
        DiskImageFormat = "VMDK"|"RAW"|"VHD",
        S3Bucket = "string",
        S3Key = "string"
      ),
      InstanceExportDetails = list(
        InstanceId = "string",
        TargetEnvironment = "citrix"|"vmware"|"microsoft"
      ),
      State = "active"|"cancelling"|"cancelled"|"completed",
      StatusMessage = "string",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  )
)

Request syntax

svc$describe_export_tasks(
  ExportTaskIds = list(
    "string"
  ),
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  )
)