Skip to content

Get Run Cache

omics_get_run_cache R Documentation

Retrieve the details for the specified run cache

Description

Retrieve the details for the specified run cache.

For more information, see Call caching for HealthOmics runs in the AWS HealthOmics User Guide.

Usage

omics_get_run_cache(id)

Arguments

id

[required] The identifier of the run cache to retrieve.

Value

A list with the following syntax:

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

Request syntax

svc$get_run_cache(
  id = "string"
)