Skip to content

List Workflow Versions

omics_list_workflow_versions R Documentation

Lists the workflow versions for the specified workflow

Description

Lists the workflow versions for the specified workflow. For more information, see Workflow versioning in Amazon Web Services HealthOmics in the Amazon Web Services HealthOmics User Guide.

Usage

omics_list_workflow_versions(workflowId, type, workflowOwnerId,
  startingToken, maxResults)

Arguments

workflowId

[required] The workflow's ID. The workflowId is not the UUID.

type

The workflow type.

workflowOwnerId

The 12-digit account ID of the workflow owner. The workflow owner ID can be retrieved using the get_share API operation. If you are the workflow owner, you do not need to include this ID.

startingToken

Specify the pagination token from a previous request to retrieve the next page of results.

maxResults

The maximum number of workflows to return in one page of results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      arn = "string",
      workflowId = "string",
      versionName = "string",
      description = "string",
      status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE",
      type = "PRIVATE"|"READY2RUN",
      digest = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      metadata = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_workflow_versions(
  workflowId = "string",
  type = "PRIVATE"|"READY2RUN",
  workflowOwnerId = "string",
  startingToken = "string",
  maxResults = 123
)