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. |
type |
The workflow type. |
workflowOwnerId |
Amazon Web Services Id of the owner of the workflow. |
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
)