:doc:`XRay <../../xray>` / Paginator / ListResourcePolicies

********************
ListResourcePolicies
********************



.. py:class:: XRay.Paginator.ListResourcePolicies

  ::

    
    paginator = client.get_paginator('list_resource_policies')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`XRay.Client.list_resource_policies`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/ListResourcePolicies>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'StartingToken': 'string'
          }
      )
      
    :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**

      
      ::

        {
            'ResourcePolicies': [
                {
                    'PolicyName': 'string',
                    'PolicyDocument': 'string',
                    'PolicyRevisionId': 'string',
                    'LastUpdatedTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ResourcePolicies** *(list) --* 

          The list of resource policies in the target Amazon Web Services account.

          
          

          - *(dict) --* 

            A resource policy grants one or more Amazon Web Services services and accounts permissions to access X-Ray. Each resource policy is associated with a specific Amazon Web Services account.

            
            

            - **PolicyName** *(string) --* 

              The name of the resource policy. Must be unique within a specific Amazon Web Services account.

              
            

            - **PolicyDocument** *(string) --* 

              The resource policy document, which can be up to 5kb in size.

              
            

            - **PolicyRevisionId** *(string) --* 

              Returns the current policy revision id for this policy name.

              
            

            - **LastUpdatedTime** *(datetime) --* 

              When the policy was last updated, in Unix time seconds.

              
        
      
    