Skip to content

List Pipeline Parameters For Execution

sagemaker_list_pipeline_parameters_for_execution R Documentation

Gets a list of parameters for a pipeline execution

Description

Gets a list of parameters for a pipeline execution.

Usage

sagemaker_list_pipeline_parameters_for_execution(PipelineExecutionArn,
  NextToken, MaxResults)

Arguments

PipelineExecutionArn

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

NextToken

If the result of the previous list_pipeline_parameters_for_execution request was truncated, the response includes a NextToken. To retrieve the next set of parameters, use the token in the next request.

MaxResults

The maximum number of parameters to return in the response.

Value

A list with the following syntax:

list(
  PipelineParameters = list(
    list(
      Name = "string",
      Value = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_pipeline_parameters_for_execution(
  PipelineExecutionArn = "string",
  NextToken = "string",
  MaxResults = 123
)