:doc:`GreengrassV2 <../../greengrassv2>` / Client / list_client_devices_associated_with_core_device

***********************************************
list_client_devices_associated_with_core_device
***********************************************



.. py:method:: GreengrassV2.Client.list_client_devices_associated_with_core_device(**kwargs)

  

  Retrieves a paginated list of client devices that are associated with a core device.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/greengrassv2-2020-11-30/ListClientDevicesAssociatedWithCoreDevice>`_  


  **Request Syntax**
  ::

    response = client.list_client_devices_associated_with_core_device(
        coreDeviceThingName='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type coreDeviceThingName: string
  :param coreDeviceThingName: **[REQUIRED]** 

    The name of the core device. This is also the name of the IoT thing.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be returned per paginated request.

    

  
  :type nextToken: string
  :param nextToken: 

    The token to be used for the next set of paginated results.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'associatedClientDevices': [
              {
                  'thingName': 'string',
                  'associationTimestamp': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **associatedClientDevices** *(list) --* 

        A list that describes the client devices that are associated with the core device.

        
        

        - *(dict) --* 

          Contains information about a client device that is associated to a core device for cloud discovery.

          
          

          - **thingName** *(string) --* 

            The name of the IoT thing that represents the associated client device.

            
          

          - **associationTimestamp** *(datetime) --* 

            The time that the client device was associated, expressed in ISO 8601 format.

            
      
    
      

      - **nextToken** *(string) --* 

        The token for the next set of results, or null if there are no additional results.

        
  
  **Exceptions**
  
  *   :py:class:`GreengrassV2.Client.exceptions.ValidationException`

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

  
  *   :py:class:`GreengrassV2.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`GreengrassV2.Client.exceptions.InternalServerException`

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

  