Values.CreateRunCacheRequestSourceCreates a run cache to store and reference task outputs from completed private runs. Specify an Amazon S3 location where Amazon Web Services HealthOmics saves the cached data. This data must be immediately accessible and not in an archived state. You can save intermediate task files to a run cache if they are declared as task outputs in the workflow definition file. For more information, see Call caching and Creating a run cache in the Amazon Web Services HealthOmics User Guide.
type nonrec t = {cacheBehavior : CacheBehavior.t option;Default cache behavior for runs that use this cache. Supported values are: CACHE_ON_FAILURE: Caches task outputs from completed tasks for runs that fail. This setting is useful if you're debugging a workflow that fails after several tasks completed successfully. The subsequent run uses the cache outputs for previously-completed tasks if the task definition, inputs, and container in ECR are identical to the prior run. CACHE_ALWAYS: Caches task outputs from completed tasks for all runs. This setting is useful in development mode, but do not use it in a production setting. If you don't specify a value, the default behavior is CACHE_ON_FAILURE. When you start a run that uses this cache, you can override the default cache behavior. For more information, see Run cache behavior in the Amazon Web Services HealthOmics User Guide.
*)cacheS3Location : S3UriForBucketOrObject.t;Specify the S3 location for storing the cached task outputs. This data must be immediately accessible (not in an archived state).
*)description : UserCustomDescription.t option;Enter a description of the run cache.
*)name : UserCustomName.t option;Enter a user-friendly name for the run cache.
*)requestId : RunCacheRequestId.t;A unique request token, to ensure idempotency. If you don't specify a token, Amazon Web Services HealthOmics automatically generates a universally unique identifier (UUID) for the request.
*)cacheBucketOwnerId : AwsAccountId.t option;The Amazon Web Services account ID of the expected owner of the S3 bucket for the run cache. If not provided, your account ID is set as the owner of the bucket.
*)}val make :
?cacheBehavior:??? ->
?description:??? ->
?name:??? ->
?tags:??? ->
?cacheBucketOwnerId:??? ->
cacheS3Location:S3UriForBucketOrObject.t ->
requestId:RunCacheRequestId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of S3UriForBucketOrObject.t ])
list ]