Skip to content

List Export Image Tasks

appstream_list_export_image_tasks R Documentation

Lists export image tasks, with optional filtering and pagination

Description

Lists export image tasks, with optional filtering and pagination. Use this operation to monitor the status of multiple export operations.

Usage

appstream_list_export_image_tasks(Filters, MaxResults, NextToken)

Arguments

Filters

Optional filters to apply when listing export image tasks. Filters help you narrow down the results based on specific criteria.

MaxResults

The maximum number of export image tasks to return in a single request. The valid range is 1-500, with a default of 50.

NextToken

The pagination token from a previous request. Use this to retrieve the next page of results when there are more tasks than the MaxResults limit.

Value

A list with the following syntax:

list(
  ExportImageTasks = list(
    list(
      TaskId = "string",
      ImageArn = "string",
      AmiName = "string",
      CreatedDate = as.POSIXct(
        "2015-01-01"
      ),
      AmiDescription = "string",
      State = "EXPORTING"|"COMPLETED"|"FAILED",
      AmiId = "string",
      TagSpecifications = list(
        "string"
      ),
      ErrorDetails = list(
        list(
          ErrorCode = "string",
          ErrorMessage = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_export_image_tasks(
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)