Learn R Programming

paws.compute (version 0.1.12)

ec2_describe_conversion_tasks: Describes the specified conversion tasks or all your conversion tasks

Description

Describes the specified conversion tasks or all your conversion tasks. For more information, see the VM Import/Export User Guide.

For information about the import manifest referenced by this API action, see VM Import Manifest.

Usage

ec2_describe_conversion_tasks(ConversionTaskIds, DryRun)

Value

A list with the following syntax:

list(
  ConversionTasks = list(
    list(
      ConversionTaskId = "string",
      ExpirationTime = "string",
      ImportInstance = list(
        Description = "string",
        InstanceId = "string",
        Platform = "Windows",
        Volumes = list(
          list(
            AvailabilityZone = "string",
            BytesConverted = 123,
            Description = "string",
            Image = list(
              Checksum = "string",
              Format = "VMDK"|"RAW"|"VHD",
              ImportManifestUrl = "string",
              Size = 123
            ),
            Status = "string",
            StatusMessage = "string",
            Volume = list(
              Id = "string",
              Size = 123
            )
          )
        )
      ),
      ImportVolume = list(
        AvailabilityZone = "string",
        BytesConverted = 123,
        Description = "string",
        Image = list(
          Checksum = "string",
          Format = "VMDK"|"RAW"|"VHD",
          ImportManifestUrl = "string",
          Size = 123
        ),
        Volume = list(
          Id = "string",
          Size = 123
        )
      ),
      State = "active"|"cancelling"|"cancelled"|"completed",
      StatusMessage = "string",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  )
)

Arguments

ConversionTaskIds

The conversion task IDs.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Request syntax

svc$describe_conversion_tasks(
  ConversionTaskIds = list(
    "string"
  ),
  DryRun = TRUE|FALSE
)