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
|
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
)