List Pipelines
codepipeline_list_pipelines | R Documentation |
Gets a summary of all of the pipelines associated with your account¶
Description¶
Gets a summary of all of the pipelines associated with your account.
Usage¶
codepipeline_list_pipelines(nextToken, maxResults)
Arguments¶
nextToken |
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list. |
maxResults |
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000. |
Value¶
A list with the following syntax:
list(
pipelines = list(
list(
name = "string",
version = 123,
pipelineType = "V1"|"V2",
executionMode = "QUEUED"|"SUPERSEDED"|"PARALLEL",
created = as.POSIXct(
"2015-01-01"
),
updated = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_pipelines(
nextToken = "string",
maxResults = 123
)