:doc:`SageMaker <../../sagemaker>` / Client / list_pipeline_parameters_for_execution

**************************************
list_pipeline_parameters_for_execution
**************************************



.. py:method:: SageMaker.Client.list_pipeline_parameters_for_execution(**kwargs)

  

  Gets a list of parameters for a pipeline execution.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineParametersForExecution>`_  


  **Request Syntax**
  ::

    response = client.list_pipeline_parameters_for_execution(
        PipelineExecutionArn='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type PipelineExecutionArn: string
  :param PipelineExecutionArn: **[REQUIRED]** 

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

    

  
  :type NextToken: string
  :param NextToken: 

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

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of parameters to return in the response.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'PipelineParameters': [
              {
                  'Name': 'string',
                  'Value': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **PipelineParameters** *(list) --* 

        Contains a list of pipeline parameters. This list can be empty.

        
        

        - *(dict) --* 

          Assigns a value to a named Pipeline parameter.

          
          

          - **Name** *(string) --* 

            The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition.

            
          

          - **Value** *(string) --* 

            The literal value for the parameter.

            
      
    
      

      - **NextToken** *(string) --* 

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

        
  
  **Exceptions**
  
  *   :py:class:`SageMaker.Client.exceptions.ResourceNotFound`

  