List Pipelines
| sagemaker_list_pipelines | R Documentation |
Gets a list of pipelines¶
Description¶
Gets a list of pipelines.
Usage¶
sagemaker_list_pipelines(PipelineNamePrefix, CreatedAfter,
CreatedBefore, SortBy, SortOrder, NextToken, MaxResults)
Arguments¶
PipelineNamePrefixThe prefix of the pipeline name.
CreatedAfterA filter that returns the pipelines that were created after a specified time.
CreatedBeforeA filter that returns the pipelines that were created before a specified time.
SortByThe field by which to sort results. The default is
CreatedTime.SortOrderThe sort order for results.
NextTokenIf the result of the previous
list_pipelinesrequest was truncated, the response includes aNextToken. To retrieve the next set of pipelines, use the token in the next request.MaxResultsThe maximum number of pipelines to return in the response.
Value¶
A list with the following syntax:
list(
PipelineSummaries = list(
list(
PipelineArn = "string",
PipelineName = "string",
PipelineDisplayName = "string",
PipelineDescription = "string",
RoleArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastExecutionTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)