:doc:`ChimeSDKIdentity <../../chime-sdk-identity>` / Client / list_app_instance_bots

**********************
list_app_instance_bots
**********************



.. py:method:: ChimeSDKIdentity.Client.list_app_instance_bots(**kwargs)

  

  Lists all ``AppInstanceBots`` created under a single ``AppInstance``.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListAppInstanceBots>`_  


  **Request Syntax**
  ::

    response = client.list_app_instance_bots(
        AppInstanceArn='string',
        MaxResults=123,
        NextToken='string'
    )
    
  :type AppInstanceArn: string
  :param AppInstanceArn: **[REQUIRED]** 

    The ARN of the ``AppInstance``.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of requests to return.

    

  
  :type NextToken: string
  :param NextToken: 

    The token passed by previous API calls until all requested bots are returned.

    

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

    
    ::

      {
          'AppInstanceArn': 'string',
          'AppInstanceBots': [
              {
                  'AppInstanceBotArn': 'string',
                  'Name': 'string',
                  'Metadata': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AppInstanceArn** *(string) --* 

        The ARN of the AppInstance.

        
      

      - **AppInstanceBots** *(list) --* 

        The information for each requested ``AppInstanceBot``.

        
        

        - *(dict) --* 

          High-level information about an AppInstanceBot.

          
          

          - **AppInstanceBotArn** *(string) --* 

            The ARN of the AppInstanceBot.

            
          

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

            The name of the AppInstanceBox.

            
          

          - **Metadata** *(string) --* 

            The metadata of the AppInstanceBot.

            
      
    
      

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

        The token passed by previous API calls until all requested bots are returned.

        
  
  **Exceptions**
  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.BadRequestException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ForbiddenException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ResourceLimitExceededException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ThrottledClientException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.UnauthorizedClientException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ServiceFailureException`

  