Get Workflow
imagebuilder_get_workflow | R Documentation |
Get a workflow resource object¶
Description¶
Get a workflow resource object.
Usage¶
Arguments¶
workflowBuildVersionArn
[required] The Amazon Resource Name (ARN) of the workflow resource that you want to get.
Value¶
A list with the following syntax:
list(
workflow = list(
arn = "string",
name = "string",
version = "string",
description = "string",
changeDescription = "string",
type = "BUILD"|"TEST"|"DISTRIBUTION",
state = list(
status = "DEPRECATED",
reason = "string"
),
owner = "string",
data = "string",
kmsKeyId = "string",
dateCreated = "string",
tags = list(
"string"
),
parameters = list(
list(
name = "string",
type = "string",
defaultValue = list(
"string"
),
description = "string"
)
)
)
)