Skip to content

List Annotation Import Jobs

omics_list_annotation_import_jobs R Documentation

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers

Description

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change.

Retrieves a list of annotation import jobs.

Usage

omics_list_annotation_import_jobs(maxResults, ids, nextToken, filter)

Arguments

maxResults

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

ids

IDs of annotation import jobs to retrieve.

nextToken

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

filter

A filter to apply to the list.

Value

A list with the following syntax:

list(
  annotationImportJobs = list(
    list(
      id = "string",
      destinationName = "string",
      versionName = "string",
      roleArn = "string",
      status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      completionTime = as.POSIXct(
        "2015-01-01"
      ),
      runLeftNormalization = TRUE|FALSE,
      annotationFields = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_annotation_import_jobs(
  maxResults = 123,
  ids = list(
    "string"
  ),
  nextToken = "string",
  filter = list(
    status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES",
    storeName = "string"
  )
)