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¶
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"
)