Module Values.UpdateWorkflowRequestSource

Updates information about a workflow. You can update the following workflow information: Name Description Default storage type Default storage capacity (with workflow ID) This operation returns a response with no body if the operation is successful. You can check the workflow updates by calling the GetWorkflow API operation. For more information, see Update a private workflow in the Amazon Web Services HealthOmics User Guide.

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

    The workflow's ID.

    *)
  2. name : WorkflowName.t option;
    (*

    A name for the workflow.

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

    A description for the workflow.

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

    The default storage type for runs that use this workflow. STATIC storage allocates a fixed amount of storage. DYNAMIC storage dynamically scales the storage up or down, based on file system utilization. For more information about static and dynamic storage, see Running workflows in the Amazon Web Services HealthOmics User Guide.

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

    The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.

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

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

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