:doc:`Route53GlobalResolver <../../route53globalresolver>` / Paginator / ListGlobalResolvers

*******************
ListGlobalResolvers
*******************



.. py:class:: Route53GlobalResolver.Paginator.ListGlobalResolvers

  ::

    
    paginator = client.get_paginator('list_global_resolvers')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Route53GlobalResolver.Client.list_global_resolvers`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/ListGlobalResolvers>`_    


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

      
      ::

        {
            'globalResolvers': [
                {
                    'id': 'string',
                    'arn': 'string',
                    'clientToken': 'string',
                    'dnsName': 'string',
                    'observabilityRegion': 'string',
                    'name': 'string',
                    'description': 'string',
                    'regions': [
                        'string',
                    ],
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1),
                    'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING',
                    'ipv4Addresses': [
                        'string',
                    ]
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **globalResolvers** *(list) --* 

          Paginated list of Global Resolvers.

          
          

          - *(dict) --* 

            Summary information about a global resolver.

            
            

            - **id** *(string) --* 

              The unique identifier of the global resolver.

              
            

            - **arn** *(string) --* 

              The Amazon Resource Name (ARN) of the global resolver.

              
            

            - **clientToken** *(string) --* 

              The unique string that identifies the request and ensures idempotency.

              
            

            - **dnsName** *(string) --* 

              The DNS name of the global resolver.

              
            

            - **observabilityRegion** *(string) --* 

              The AWS Region where observability data is collected for the global resolver.

              
            

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

              The name of the global resolver.

              
            

            - **description** *(string) --* 

              A description of the global resolver.

              
            

            - **regions** *(list) --* 

              The AWS Regions where the global resolver is deployed.

              
              

              - *(string) --* 
          
            

            - **createdAt** *(datetime) --* 

              The date and time when the global resolver was created.

              
            

            - **updatedAt** *(datetime) --* 

              The date and time when the global resolver was last updated.

              
            

            - **status** *(string) --* 

              The current status of the global resolver.

              
            

            - **ipv4Addresses** *(list) --* 

              The IPv4 addresses assigned to the global resolver.

              
              

              - *(string) --* 
          
        
      
        

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

          A token to resume pagination.

          
    