Values.UpdateRunCacheRequestSourceUpdates 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 GetRunCache API operation. For more information, see How call caching works in the Amazon Web Services HealthOmics User Guide.
type nonrec t = {cacheBehavior : CacheBehavior.t option;Update the default run cache behavior.
*)description : UserCustomDescription.t option;Update the run cache description.
*)id : RunCacheId.t;The identifier of the run cache you want to update.
*)name : UserCustomName.t option;Update the name of the run cache.
*)}val make :
?cacheBehavior:??? ->
?description:??? ->
?name:??? ->
id:RunCacheId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of UserCustomDescription.t ])
list ]