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

************************************
list_component_provisioned_resources
************************************



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

  

  List provisioned resources for a component with details.

   

  For more information about components, see `Proton components <https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html>`__ in the *Proton User Guide*.

  

  .. 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/ListComponentProvisionedResources>`_  


  **Request Syntax**
  ::

    response = client.list_component_provisioned_resources(
        componentName='string',
        nextToken='string'
    )
    
  :type componentName: string
  :param componentName: **[REQUIRED]** 

    The name of the component whose provisioned resources you want.

    

  
  :type nextToken: string
  :param nextToken: 

    A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.

    

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

    
    ::

      {
          'nextToken': 'string',
          'provisionedResources': [
              {
                  'identifier': 'string',
                  'name': 'string',
                  'provisioningEngine': 'CLOUDFORMATION'|'TERRAFORM'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the current requested list of provisioned resources.

        
      

      - **provisionedResources** *(list) --* 

        An array of provisioned resources for a component.

        
        

        - *(dict) --* 

          Detail data for a provisioned resource.

          
          

          - **identifier** *(string) --* 

            The provisioned resource identifier.

            
          

          - **name** *(string) --* 

            The provisioned resource name.

            
          

          - **provisioningEngine** *(string) --* 

            The resource provisioning engine. At this time, ``CLOUDFORMATION`` can be used for Amazon Web Services-managed provisioning, and ``TERRAFORM`` can be used for self-managed provisioning.

             

            For more information, see `Self-managed provisioning <https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self>`__ in the *Proton User Guide*.

            
      
    
  
  **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`

  