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

****************************************
list_application_instance_node_instances
****************************************



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

  

  Returns a list of application node instances.

  

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


  **Request Syntax**
  ::

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

    The node instances' application instance ID.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of node instances 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',
          'NodeInstances': [
              {
                  'CurrentStatus': 'RUNNING'|'ERROR'|'NOT_AVAILABLE'|'PAUSED',
                  'NodeId': 'string',
                  'NodeInstanceId': 'string',
                  'NodeName': 'string',
                  'PackageName': 'string',
                  'PackagePatchVersion': 'string',
                  'PackageVersion': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

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

        
      

      - **NodeInstances** *(list) --* 

        A list of node instances.

        
        

        - *(dict) --* 

          A node instance.

          
          

          - **CurrentStatus** *(string) --* 

            The instance's current status.

            
          

          - **NodeId** *(string) --* 

            The node's ID.

            
          

          - **NodeInstanceId** *(string) --* 

            The instance's ID.

            
          

          - **NodeName** *(string) --* 

            The instance's name.

            
          

          - **PackageName** *(string) --* 

            The instance's package name.

            
          

          - **PackagePatchVersion** *(string) --* 

            The instance's package patch version.

            
          

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

            The instance's package version.

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

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

  