:doc:`ManagedintegrationsforIoTDeviceManagement <../../iot-managed-integrations>` / Paginator / ListDeviceDiscoveries

*********************
ListDeviceDiscoveries
*********************



.. py:class:: ManagedintegrationsforIoTDeviceManagement.Paginator.ListDeviceDiscoveries

  ::

    
    paginator = client.get_paginator('list_device_discoveries')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ManagedintegrationsforIoTDeviceManagement.Client.list_device_discoveries`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-managed-integrations-2025-03-03/ListDeviceDiscoveries>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          TypeFilter='ZWAVE'|'ZIGBEE'|'CLOUD'|'CUSTOM'|'CONTROLLER_CAPABILITY_REDISCOVERY',
          StatusFilter='RUNNING'|'SUCCEEDED'|'FAILED'|'TIMED_OUT',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type TypeFilter: string
    :param TypeFilter: 

      The discovery type to filter device discovery jobs by.

      

    
    :type StatusFilter: string
    :param StatusFilter: 

      The status to filter device discovery jobs by.

      

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

      
      ::

        {
            'Items': [
                {
                    'Id': 'string',
                    'DiscoveryType': 'ZWAVE'|'ZIGBEE'|'CLOUD'|'CUSTOM'|'CONTROLLER_CAPABILITY_REDISCOVERY',
                    'Status': 'RUNNING'|'SUCCEEDED'|'FAILED'|'TIMED_OUT'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **Items** *(list) --* 

          The list of device discovery jobs that match the specified criteria.

          
          

          - *(dict) --* 

            Structure containing summary information about a device discovery job, including its identifier, type, and status.

            
            

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

              The unique identifier of the device discovery job.

              
            

            - **DiscoveryType** *(string) --* 

              The type of discovery process used to find devices.

              
            

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

              The current status of the device discovery job.

              
        
      
    