Skip to content

List Reference Import Jobs

omics_list_reference_import_jobs R Documentation

Retrieves a list of reference import jobs

Description

Retrieves a list of reference import jobs.

Usage

omics_list_reference_import_jobs(maxResults, nextToken,
  referenceStoreId, filter)

Arguments

maxResults

The maximum number of jobs to return in one page of results.

nextToken

Specify the pagination token from a previous request to retrieve the next page of results.

referenceStoreId

[required] The job's reference store ID.

filter

A filter to apply to the list.

Value

A list with the following syntax:

list(
  nextToken = "string",
  importJobs = list(
    list(
      id = "string",
      referenceStoreId = "string",
      roleArn = "string",
      status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      completionTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_reference_import_jobs(
  maxResults = 123,
  nextToken = "string",
  referenceStoreId = "string",
  filter = list(
    status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES",
    createdAfter = as.POSIXct(
      "2015-01-01"
    ),
    createdBefore = as.POSIXct(
      "2015-01-01"
    )
  )
)