:doc:`ServiceCatalog <../../servicecatalog>` / Client / get_provisioned_product_outputs

*******************************
get_provisioned_product_outputs
*******************************



.. py:method:: ServiceCatalog.Client.get_provisioned_product_outputs(**kwargs)

  

  This API takes either a ``ProvisonedProductId`` or a ``ProvisionedProductName``, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/GetProvisionedProductOutputs>`_  


  **Request Syntax**
  ::

    response = client.get_provisioned_product_outputs(
        AcceptLanguage='string',
        ProvisionedProductId='string',
        ProvisionedProductName='string',
        OutputKeys=[
            'string',
        ],
        PageSize=123,
        PageToken='string'
    )
    
  :type AcceptLanguage: string
  :param AcceptLanguage: 

    The language code.

     

    
    * ``jp`` - Japanese
     
    * ``zh`` - Chinese
    

    

  
  :type ProvisionedProductId: string
  :param ProvisionedProductId: 

    The identifier of the provisioned product that you want the outputs from.

    

  
  :type ProvisionedProductName: string
  :param ProvisionedProductName: 

    The name of the provisioned product that you want the outputs from.

    

  
  :type OutputKeys: list
  :param OutputKeys: 

    The list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.

    

  
    - *(string) --* 

    

  :type PageSize: integer
  :param PageSize: 

    The maximum number of items to return with this call.

    

  
  :type PageToken: string
  :param PageToken: 

    The page token for the next set of results. To retrieve the first set of results, use null.

    

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

    
    ::

      {
          'Outputs': [
              {
                  'OutputKey': 'string',
                  'OutputValue': 'string',
                  'Description': 'string'
              },
          ],
          'NextPageToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Outputs** *(list) --* 

        Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.

        
        

        - *(dict) --* 

          The output for the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.

          
          

          - **OutputKey** *(string) --* 

            The output key.

            
          

          - **OutputValue** *(string) --* 

            The output value.

            
          

          - **Description** *(string) --* 

            The description of the output.

            
      
    
      

      - **NextPageToken** *(string) --* 

        The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

        
  
  **Exceptions**
  
  *   :py:class:`ServiceCatalog.Client.exceptions.InvalidParametersException`

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

  