List Workflows
imagebuilder_list_workflows | R Documentation |
Lists workflow build versions based on filtering parameters¶
Description¶
Lists workflow build versions based on filtering parameters.
Usage¶
imagebuilder_list_workflows(owner, filters, byName, maxResults,
nextToken)
Arguments¶
owner |
Used to get a list of workflow build version filtered by the identity of the creator. |
filters |
Used to streamline search results. |
byName |
Specify all or part of the workflow name to streamline results. |
maxResults |
The maximum items to return in a request. |
nextToken |
A token to specify where to start paginating. This is the nextToken from a previously truncated response. |
Value¶
A list with the following syntax:
list(
workflowVersionList = list(
list(
arn = "string",
name = "string",
version = "string",
description = "string",
type = "BUILD"|"TEST"|"DISTRIBUTION",
owner = "string",
dateCreated = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_workflows(
owner = "Self"|"Shared"|"Amazon"|"ThirdParty"|"AWSMarketplace",
filters = list(
list(
name = "string",
values = list(
"string"
)
)
),
byName = TRUE|FALSE,
maxResults = 123,
nextToken = "string"
)