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¶
ownerUsed to get a list of workflow build version filtered by the identity of the creator.
filtersUsed to streamline search results.
byNameSpecify all or part of the workflow name to streamline results.
maxResultsThe maximum items to return in a request.
nextTokenA 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"
)