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¶
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 aNextToken
. 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"
)