Route53Resolver / Paginator / ListResolverEndpointIpAddresses

ListResolverEndpointIpAddresses#

class Route53Resolver.Paginator.ListResolverEndpointIpAddresses#
paginator = client.get_paginator('list_resolver_endpoint_ip_addresses')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from Route53Resolver.Client.list_resolver_endpoint_ip_addresses().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ResolverEndpointId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • ResolverEndpointId (string) –

    [REQUIRED]

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

  • PaginationConfig (dict) –

    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.

Return type:

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',
            '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 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).