:doc:`Route53Resolver <../../route53resolver>` / Client / list_outpost_resolvers

**********************
list_outpost_resolvers
**********************



.. py:method:: Route53Resolver.Client.list_outpost_resolvers(**kwargs)

  

  Lists all the Resolvers on Outposts that were created using the current Amazon Web Services account.

  

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


  **Request Syntax**
  ::

    response = client.list_outpost_resolvers(
        OutpostArn='string',
        MaxResults=123,
        NextToken='string'
    )
    
  :type OutpostArn: string
  :param OutpostArn: 

    The Amazon Resource Name (ARN) of the Outpost.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of Resolvers on the Outpost that you want to return in the response to a ``ListOutpostResolver`` request. If you don't specify a value for ``MaxResults``, the request returns up to 100 Resolvers.

    

  
  :type NextToken: string
  :param NextToken: 

    For the first ``ListOutpostResolver`` request, omit this value.

    

  
  
  :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'
              },
          ],
          'NextToken': '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.

            
      
    
      

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

        If more than ``MaxResults`` Resolvers match the specified criteria, you can submit another ``ListOutpostResolver`` request to get the next group of results. In the next request, specify the value of ``NextToken`` from the previous response.

        
  
  **Exceptions**
  
  *   :py:class:`Route53Resolver.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Route53Resolver.Client.exceptions.InternalServiceErrorException`

  
  *   :py:class:`Route53Resolver.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Route53Resolver.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Route53Resolver.Client.exceptions.ValidationException`

  