:doc:`Route53Resolver <../../route53resolver>` / Paginator / ListResolverConfigs

*******************
ListResolverConfigs
*******************



.. py:class:: Route53Resolver.Paginator.ListResolverConfigs

  ::

    
    paginator = client.get_paginator('list_resolver_configs')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Route53Resolver.Client.list_resolver_configs`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverConfigs>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 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.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

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

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

        

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

      
      ::

        {
            'ResolverConfigs': [
                {
                    'Id': 'string',
                    'ResourceId': 'string',
                    'OwnerId': 'string',
                    'AutodefinedReverse': 'ENABLING'|'ENABLED'|'DISABLING'|'DISABLED'|'UPDATING_TO_USE_LOCAL_RESOURCE_SETTING'|'USE_LOCAL_RESOURCE_SETTING'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ResolverConfigs** *(list) --* 

          An array that contains one ``ResolverConfigs`` element for each Resolver configuration that is associated with the current Amazon Web Services account.

          
          

          - *(dict) --* 

            A complex type that contains information about a Resolver configuration for a VPC.

            
            

            - **Id** *(string) --* 

              ID for the Resolver configuration.

              
            

            - **ResourceId** *(string) --* 

              The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile that you're configuring Resolver for.

              
            

            - **OwnerId** *(string) --* 

              The owner account ID of the Amazon Virtual Private Cloud VPC.

              
            

            - **AutodefinedReverse** *(string) --* 

              The status of whether or not the Resolver will create autodefined rules for reverse DNS lookups. This is enabled by default. The status can be one of following:

               

              
              * **ENABLING:** Autodefined rules for reverse DNS lookups are being enabled but are not complete.
               
              * **ENABLED:** Autodefined rules for reverse DNS lookups are enabled.
               
              * **DISABLING:** Autodefined rules for reverse DNS lookups are being disabled but are not complete.
               
              * **DISABLED:** Autodefined rules for reverse DNS lookups are disabled.
              

              
        
      
    