Skip to content

List Annotation Store Versions

omics_list_annotation_store_versions R Documentation

Lists the versions of an annotation store

Description

Lists the versions of an annotation store.

Usage

omics_list_annotation_store_versions(name, maxResults, nextToken,
  filter)

Arguments

name

[required] The name of an annotation store.

maxResults

The maximum number of annotation store versions to return in one page of results.

nextToken

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

filter

A filter to apply to the list of annotation store versions.

Value

A list with the following syntax:

list(
  annotationStoreVersions = list(
    list(
      storeId = "string",
      id = "string",
      status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
      versionArn = "string",
      name = "string",
      versionName = "string",
      description = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      statusMessage = "string",
      versionSizeBytes = 123
    )
  ),
  nextToken = "string"
)

Request syntax

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