:doc:`Panorama <../../panorama>` / Client / list_application_instance_dependencies

**************************************
list_application_instance_dependencies
**************************************



.. py:method:: Panorama.Client.list_application_instance_dependencies(**kwargs)

  

  Returns a list of application instance dependencies.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceDependencies>`_  


  **Request Syntax**
  ::

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

    The application instance's ID.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of application instance dependencies to return in one page of results.

    

  
  :type NextToken: string
  :param NextToken: 

    Specify the pagination token from a previous request to retrieve the next page of results.

    

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

    
    ::

      {
          'NextToken': 'string',
          'PackageObjects': [
              {
                  'Name': 'string',
                  'PackageVersion': 'string',
                  'PatchVersion': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        A pagination token that's included if more results are available.

        
      

      - **PackageObjects** *(list) --* 

        A list of package objects.

        
        

        - *(dict) --* 

          A package object.

          
          

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

            The object's name.

            
          

          - **PackageVersion** *(string) --* 

            The object's package version.

            
          

          - **PatchVersion** *(string) --* 

            The object's patch version.

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

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

  