:doc:`Route53 <../../route53>` / Paginator / ListQueryLoggingConfigs

***********************
ListQueryLoggingConfigs
***********************



.. py:class:: Route53.Paginator.ListQueryLoggingConfigs

  ::

    
    paginator = client.get_paginator('list_query_logging_configs')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Route53.Client.list_query_logging_configs`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListQueryLoggingConfigs>`_    


    **Request Syntax**
    ::

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

      (Optional) If you want to list the query logging configuration that is associated with a hosted zone, specify the ID in ``HostedZoneId``.

       

      If you don't specify a hosted zone ID, ``ListQueryLoggingConfigs`` returns all of the configurations that are associated with the current Amazon Web Services account.

      

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

      
      ::

        {
            'QueryLoggingConfigs': [
                {
                    'Id': 'string',
                    'HostedZoneId': 'string',
                    'CloudWatchLogsLogGroupArn': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **QueryLoggingConfigs** *(list) --* 

          An array that contains one `QueryLoggingConfig <https://docs.aws.amazon.com/Route53/latest/APIReference/API_QueryLoggingConfig.html>`__ element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.

          
          

          - *(dict) --* 

            A complex type that contains information about a configuration for DNS query logging.

            
            

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

              The ID for a configuration for DNS query logging.

              
            

            - **HostedZoneId** *(string) --* 

              The ID of the hosted zone that CloudWatch Logs is logging queries for.

              
            

            - **CloudWatchLogsLogGroupArn** *(string) --* 

              The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.

              
        
      
    