:doc:`Proton <../../proton>` / Paginator / ListServiceInstanceProvisionedResources

***************************************
ListServiceInstanceProvisionedResources
***************************************



.. py:class:: Proton.Paginator.ListServiceInstanceProvisionedResources

  ::

    
    paginator = client.get_paginator('list_service_instance_provisioned_resources')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Proton.Client.list_service_instance_provisioned_resources`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          serviceInstanceName='string',
          serviceName='string',
          PaginationConfig={
              'MaxItems': 123,
              'StartingToken': 'string'
          }
      )
      
    :type serviceInstanceName: string
    :param serviceInstanceName: **[REQUIRED]** 

      The name of the service instance whose provisioned resources you want.

      

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

      The name of the service that ``serviceInstanceName`` is associated to.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

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

      

      - *(dict) --* 
        

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

          An array of provisioned resources for a service instance.

          
          

          - *(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*.

              
        
      
        

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

          A token to resume pagination.

          
    