Get Workflow Version
omics_get_workflow_version | R Documentation |
Gets information about a workflow version¶
Description¶
Gets information about a workflow version. For more information, see Workflow versioning in Amazon Web Services HealthOmics in the Amazon Web Services HealthOmics User Guide.
Usage¶
omics_get_workflow_version(workflowId, versionName, type, export,
workflowOwnerId)
Arguments¶
workflowId |
[required] The workflow's ID. |
versionName |
[required] The workflow version name. |
type |
The workflow's type. |
export |
The export format for the workflow. |
workflowOwnerId |
Amazon Web Services Id of the owner of the workflow. |
Value¶
A list with the following syntax:
list(
arn = "string",
workflowId = "string",
versionName = "string",
accelerators = "GPU",
creationTime = as.POSIXct(
"2015-01-01"
),
description = "string",
definition = "string",
digest = "string",
engine = "WDL"|"NEXTFLOW"|"CWL",
main = "string",
metadata = list(
"string"
),
parameterTemplate = list(
list(
description = "string",
optional = TRUE|FALSE
)
),
status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE",
statusMessage = "string",
storageType = "STATIC"|"DYNAMIC",
storageCapacity = 123,
type = "PRIVATE"|"READY2RUN",
tags = list(
"string"
),
uuid = "string",
workflowBucketOwnerId = "string"
)
Request syntax¶
svc$get_workflow_version(
workflowId = "string",
versionName = "string",
type = "PRIVATE"|"READY2RUN",
export = list(
"DEFINITION"
),
workflowOwnerId = "string"
)