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

*******************************
ListResolverEndpointIpAddresses
*******************************



.. py:class:: Route53Resolver.Paginator.ListResolverEndpointIpAddresses

  ::

    
    paginator = client.get_paginator('list_resolver_endpoint_ip_addresses')

  
  

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

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

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


    **Request Syntax**
    ::

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

      The ID of the Resolver endpoint that you want to get IP addresses for.

      

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

      
      ::

        {
            'MaxResults': 123,
            'IpAddresses': [
                {
                    'IpId': 'string',
                    'SubnetId': 'string',
                    'Ip': 'string',
                    'Ipv6': 'string',
                    'Status': 'CREATING'|'FAILED_CREATION'|'ATTACHING'|'ATTACHED'|'REMAP_DETACHING'|'REMAP_ATTACHING'|'DETACHING'|'FAILED_RESOURCE_GONE'|'DELETING'|'DELETE_FAILED_FAS_EXPIRED'|'UPDATING'|'UPDATE_FAILED'|'ISOLATED',
                    'StatusMessage': 'string',
                    'CreationTime': 'string',
                    'ModificationTime': 'string'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **MaxResults** *(integer) --* 

          The value that you specified for ``MaxResults`` in the request.

          
        

        - **IpAddresses** *(list) --* 

          Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).

          
          

          - *(dict) --* 

            In the response to a `GetResolverEndpoint <https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_GetResolverEndpoint.html>`__ request, information about the IP addresses that the Resolver endpoint uses for DNS queries.

            
            

            - **IpId** *(string) --* 

              The ID of one IP address.

              
            

            - **SubnetId** *(string) --* 

              The ID of one subnet.

              
            

            - **Ip** *(string) --* 

              One IPv4 address that the Resolver endpoint uses for DNS queries.

              
            

            - **Ipv6** *(string) --* 

              One IPv6 address that the Resolver endpoint uses for DNS queries.

              
            

            - **Status** *(string) --* 

              A status code that gives the current status of the request.

              
            

            - **StatusMessage** *(string) --* 

              A message that provides additional information about the status of the request.

              
            

            - **CreationTime** *(string) --* 

              The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).

              
            

            - **ModificationTime** *(string) --* 

              The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).

              
        
      
    