:doc:`Proton <../../proton>` / Client / list_service_pipeline_outputs

*****************************
list_service_pipeline_outputs
*****************************



.. py:method:: Proton.Client.list_service_pipeline_outputs(**kwargs)

  

  Get a list of service pipeline Infrastructure as Code (IaC) outputs.

  

  .. danger::

        This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.


  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputs>`_  


  **Request Syntax**
  ::

    response = client.list_service_pipeline_outputs(
        deploymentId='string',
        nextToken='string',
        serviceName='string'
    )
    
  :type deploymentId: string
  :param deploymentId: 

    The ID of the deployment you want the outputs for.

    

  
  :type nextToken: string
  :param nextToken: 

    A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

    

  
  :type serviceName: string
  :param serviceName: **[REQUIRED]** 

    The name of the service whose pipeline's outputs you want.

    

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

    
    ::

      {
          'nextToken': 'string',
          'outputs': [
              {
                  'key': 'string',
                  'valueString': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        A token that indicates the location of the next output in the array of outputs, after the current requested list of outputs.

        
      

      - **outputs** *(list) --* 

        An array of service pipeline Infrastructure as Code (IaC) outputs.

        
        

        - *(dict) --* 

          An infrastructure as code defined resource output.

          
          

          - **key** *(string) --* 

            The output key.

            
          

          - **valueString** *(string) --* 

            The output value.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`Proton.Client.exceptions.ValidationException`

  
  *   :py:class:`Proton.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Proton.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Proton.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Proton.Client.exceptions.InternalServerException`

  