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

*****************
ListAccessSources
*****************



.. py:class:: Route53GlobalResolver.Paginator.ListAccessSources

  ::

    
    paginator = client.get_paginator('list_access_sources')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          filters={
              'string': [
                  'string',
              ]
          },
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type filters: dict
    :param filters: 

      Values to filter the results.

      

    
      - *(string) --* 

      
        - *(list) --* 

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

      
      ::

        {
            'accessSources': [
                {
                    'arn': 'string',
                    'cidr': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'id': 'string',
                    'ipAddressType': 'IPV4'|'IPV6',
                    'name': 'string',
                    'dnsViewId': 'string',
                    'protocol': 'DO53'|'DOH'|'DOT',
                    'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING',
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **accessSources** *(list) --* 

          An array containing information about the access sources, such as the ID, CIDR etc.

          
          

          - *(dict) --* 

            Summary information about an access source.

            
            

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

              The Amazon Resource Name (ARN) of the access source.

              
            

            - **cidr** *(string) --* 

              The CIDR block that defines the IP address range for the access source.

              
            

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

              The date and time when the access source was created.

              
            

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

              The unique identifier of the access source.

              
            

            - **ipAddressType** *(string) --* 

              The IP address type of the access source.

              
            

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

              The name of the access source.

              
            

            - **dnsViewId** *(string) --* 

              The ID of the DNS view that the access source is associated with.

              
            

            - **protocol** *(string) --* 

              The protocol used by the access source.

              
            

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

              The current status of the access source.

              
            

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

              The date and time when the access source was last updated.

              
        
      
        

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

          A token to resume pagination.

          
    