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

********************
ListOutpostResolvers
********************



.. py:class:: Route53Resolver.Paginator.ListOutpostResolvers

  ::

    
    paginator = client.get_paginator('list_outpost_resolvers')

  
  

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

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

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


    **Request Syntax**
    ::

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

      The Amazon Resource Name (ARN) of the Outpost.

      

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

      
      ::

        {
            'OutpostResolvers': [
                {
                    'Arn': 'string',
                    'CreationTime': 'string',
                    'ModificationTime': 'string',
                    'CreatorRequestId': 'string',
                    'Id': 'string',
                    'InstanceCount': 123,
                    'PreferredInstanceType': 'string',
                    'Name': 'string',
                    'Status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING'|'ACTION_NEEDED'|'FAILED_CREATION'|'FAILED_DELETION',
                    'StatusMessage': 'string',
                    'OutpostArn': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **OutpostResolvers** *(list) --* 

          The Resolvers on Outposts that were created by using the current Amazon Web Services account, and that match the specified filters, if any.

          
          

          - *(dict) --* 

            A complex type that contains settings for an existing Resolver on an Outpost.

            
            

            - **Arn** *(string) --* 

              The ARN (Amazon Resource Name) for the Resolver on an Outpost.

              
            

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

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

              
            

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

              The date and time that the Outpost Resolver was modified, in Unix time format and Coordinated Universal Time (UTC).

              
            

            - **CreatorRequestId** *(string) --* 

              A unique string that identifies the request that created the Resolver endpoint. The ``CreatorRequestId`` allows failed requests to be retried without the risk of running the operation twice.

              
            

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

              The ID of the Resolver on Outpost.

              
            

            - **InstanceCount** *(integer) --* 

              Amazon EC2 instance count for the Resolver on the Outpost.

              
            

            - **PreferredInstanceType** *(string) --* 

              The Amazon EC2 instance type.

              
            

            - **Name** *(string) --* 

              Name of the Resolver.

              
            

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

              Status of the Resolver.

              
            

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

              A detailed description of the Resolver.

              
            

            - **OutpostArn** *(string) --* 

              The ARN (Amazon Resource Name) for the Outpost.

              
        
      
    