Skip to content

List Annotation Stores

omics_list_annotation_stores R Documentation

Retrieves a list of annotation stores

Description

Retrieves a list of annotation stores.

Usage

omics_list_annotation_stores(ids, maxResults, nextToken, filter)

Arguments

ids

IDs of stores to list.

maxResults

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

nextToken

Specify 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(
  annotationStores = list(
    list(
      id = "string",
      reference = list(
        referenceArn = "string"
      ),
      status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
      storeArn = "string",
      name = "string",
      storeFormat = "GFF"|"TSV"|"VCF",
      description = "string",
      sseConfig = list(
        type = "KMS",
        keyArn = "string"
      ),
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      statusMessage = "string",
      storeSizeBytes = 123
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_annotation_stores(
  ids = list(
    "string"
  ),
  maxResults = 123,
  nextToken = "string",
  filter = list(
    status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED"
  )
)