Skip to content

List Pipeline Versions

sagemaker_list_pipeline_versions R Documentation

Gets a list of all versions of the pipeline

Description

Gets a list of all versions of the pipeline.

Usage

sagemaker_list_pipeline_versions(PipelineName, CreatedAfter,
  CreatedBefore, SortOrder, NextToken, MaxResults)

Arguments

PipelineName

[required] The Amazon Resource Name (ARN) of the pipeline.

CreatedAfter

A filter that returns the pipeline versions that were created after a specified time.

CreatedBefore

A filter that returns the pipeline versions that were created before a specified time.

SortOrder

The sort order for the results.

NextToken

If the result of the previous list_pipeline_versions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline versions, use this token in your next request.

MaxResults

The maximum number of pipeline versions to return in the response.

Value

A list with the following syntax:

list(
  PipelineVersionSummaries = list(
    list(
      PipelineArn = "string",
      PipelineVersionId = 123,
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      PipelineVersionDescription = "string",
      PipelineVersionDisplayName = "string",
      LastExecutionPipelineExecutionArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_pipeline_versions(
  PipelineName = "string",
  CreatedAfter = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBefore = as.POSIXct(
    "2015-01-01"
  ),
  SortOrder = "Ascending"|"Descending",
  NextToken = "string",
  MaxResults = 123
)