Skip to content

Update Workflow

omics_update_workflow R Documentation

Updates information about a workflow

Description

Updates information about a workflow. For more information, see Update a private workflow in the Amazon Web Services HealthOmics User Guide.

Usage

omics_update_workflow(id, name, description, storageType,
  storageCapacity)

Arguments

id

[required] The workflow's ID.

name

A name for the workflow.

description

A description for the workflow.

storageType

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.

storageCapacity

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

Value

An empty list.

Request syntax

svc$update_workflow(
  id = "string",
  name = "string",
  description = "string",
  storageType = "STATIC"|"DYNAMIC",
  storageCapacity = 123
)