@@ -428,8 +428,8 @@ def list_executions(
428
428
sort_by (str): The field by which to sort results(CreationTime/PipelineExecutionArn).
429
429
sort_order (str): The sort order for results (Ascending/Descending).
430
430
max_results (int): The maximum number of pipeline executions to return in the response.
431
- next_token (str): If the result of the previous ListPipelineExecutions request was
432
- truncated, the response includes a NextToken. To retrieve the next set of pipeline
431
+ next_token (str): If the result of the previous ` ListPipelineExecutions` request was
432
+ truncated, the response includes a ` NextToken` . To retrieve the next set of pipeline
433
433
executions, use the token in the next request.
434
434
435
435
Returns:
@@ -474,9 +474,9 @@ def build_parameters_from_execution(
474
474
"""Gets the parameters from an execution, update with optional parameter value overrides.
475
475
476
476
Args:
477
- pipeline_execution_arn (str): The arn of the pipeline execution.
477
+ pipeline_execution_arn (str): The arn of the reference pipeline execution.
478
478
parameter_value_overrides (Dict[str, Union[str, bool, int, float]]): Parameter dict
479
- to be updated in the parameters from the referenced execution.
479
+ to be updated with the parameters from the referenced execution.
480
480
481
481
Returns:
482
482
A parameter dict built from an execution and provided parameter value overrides.
@@ -730,14 +730,14 @@ def list_parameters(self, max_results: int = None, next_token: str = None):
730
730
731
731
Args:
732
732
max_results (int): The maximum number of parameters to return in the response.
733
- next_token (str): If the result of the previous ListPipelineParametersForExecution
734
- request was truncated, the response includes a NextToken. To retrieve the next
733
+ next_token (str): If the result of the previous ` ListPipelineParametersForExecution`
734
+ request was truncated, the response includes a ` NextToken` . To retrieve the next
735
735
set of parameters, use the token in the next request.
736
736
737
737
Returns:
738
- Information about the parameters of the pipeline execution.
739
- See boto3 client list_pipeline_executions
740
- https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.list_pipeline_parameters_for_execution
738
+ Information about the parameters of the pipeline execution. This function is also
739
+ a wrapper for `list_pipeline_parameters_for_execution
740
+ < https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.list_pipeline_parameters_for_execution>`_.
741
741
"""
742
742
kwargs = dict (PipelineExecutionArn = self .arn )
743
743
update_args (
0 commit comments