Get Run Cache
| omics_get_run_cache | R Documentation |
Retrieves detailed information about the specified run cache using its ID¶
Description¶
Retrieves detailed information about the specified run cache using its ID.
For more information, see Call caching for Amazon Web Services HealthOmics runs in the Amazon Web Services 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"
)