Update Run Cache
| omics_update_run_cache | R Documentation |
Updates a run cache using its ID and returns a response with no body if the operation is successful¶
Description¶
Updates a run cache using its ID and returns a response with no body if
the operation is successful. You can update the run cache description,
name, or the default run cache behavior with CACHE_ON_FAILURE or
CACHE_ALWAYS. To confirm that your run cache settings have been
properly updated, use the get_run_cache API operation.
For more information, see How call caching works in the Amazon Web Services HealthOmics User Guide.
Usage¶
omics_update_run_cache(cacheBehavior, description, id, name)
Arguments¶
cacheBehavior |
Update the default run cache behavior. |
description |
Update the run cache description. |
id |
[required] The identifier of the run cache you want to update. |
name |
Update the name of the run cache. |
Value¶
An empty list.
Request syntax¶
svc$update_run_cache(
cacheBehavior = "CACHE_ON_FAILURE"|"CACHE_ALWAYS",
description = "string",
id = "string",
name = "string"
)