Skip to content

List Run Caches

omics_list_run_caches R Documentation

Retrieves a list of your run caches

Description

Retrieves a list of your run caches.

Usage

omics_list_run_caches(maxResults, startingToken)

Arguments

maxResults

The maximum number of results to return.

startingToken

Optional pagination token returned from a prior call to the list_run_caches API operation.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      cacheBehavior = "CACHE_ON_FAILURE"|"CACHE_ALWAYS",
      cacheS3Uri = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      id = "string",
      name = "string",
      status = "ACTIVE"|"DELETED"|"FAILED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_run_caches(
  maxResults = 123,
  startingToken = "string"
)