Module Values.UpdateRunCacheRequestSource

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 GetRunCache API operation. For more information, see How call caching works in the Amazon Web Services HealthOmics User Guide.

Sourcetype nonrec t = {
  1. cacheBehavior : CacheBehavior.t option;
    (*

    Update the default run cache behavior.

    *)
  2. description : UserCustomDescription.t option;
    (*

    Update the run cache description.

    *)
  3. id : RunCacheId.t;
    (*

    The identifier of the run cache you want to update.

    *)
  4. name : UserCustomName.t option;
    (*

    Update the name of the run cache.

    *)
}
Sourceval context_ : string
Sourceval make : ?cacheBehavior:??? -> ?description:??? -> ?name:??? -> id:RunCacheId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UserCustomDescription.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t