List Pipelines
datapipeline_list_pipelines | R Documentation |
Lists the pipeline identifiers for all active pipelines that you have permission to access¶
Description¶
Lists the pipeline identifiers for all active pipelines that you have permission to access.
Usage¶
Arguments¶
marker
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call
list_pipelines
with the marker value from the previous call to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
pipelineIdList = list(
list(
id = "string",
name = "string"
)
),
marker = "string",
hasMoreResults = TRUE|FALSE
)