Module Values.UpdateWorkflowVersionRequestSource

Updates information about the workflow version. For more information, see Workflow versioning in Amazon Web Services HealthOmics in the Amazon Web Services HealthOmics User Guide.

Sourcetype nonrec t = {
  1. workflowId : WorkflowId.t;
    (*

    The workflow's ID. The workflowId is not the UUID.

    *)
  2. versionName : WorkflowVersionName.t;
    (*

    The name of the workflow version.

    *)
  3. description : WorkflowVersionDescription.t option;
    (*

    Description of the workflow version.

    *)
  4. storageType : StorageType.t option;
    (*

    The default storage type for runs that use this workflow version. The storageType can be overridden at run time. DYNAMIC storage dynamically scales the storage up or down, based on file system utilization. STATIC storage allocates a fixed amount of storage. For more information about dynamic and static storage types, see Run storage types in the in the Amazon Web Services HealthOmics User Guide .

    *)
  5. storageCapacity : UpdateWorkflowVersionRequestStorageCapacityInteger.t option;
    (*

    The default static storage capacity (in gibibytes) for runs that use this workflow version. The storageCapacity can be overwritten at run time. The storage capacity is not required for runs with a DYNAMIC storage type.

    *)
  6. readmeMarkdown : ReadmeMarkdown.t option;
    (*

    The markdown content for the workflow version's README file. This provides documentation and usage information for users of this specific workflow version.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?storageType:??? -> ?storageCapacity:??? -> ?readmeMarkdown:??? -> workflowId:WorkflowId.t -> versionName:WorkflowVersionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of UpdateWorkflowVersionRequestStorageCapacityInteger.t | `String of WorkflowId.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