:doc:`ServerlessApplicationRepository <../../serverlessrepo>` / Client / list_application_dependencies

*****************************
list_application_dependencies
*****************************



.. py:method:: ServerlessApplicationRepository.Client.list_application_dependencies(**kwargs)

  

  Retrieves the list of applications nested in the containing application.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ListApplicationDependencies>`_  


  **Request Syntax**
  ::

    response = client.list_application_dependencies(
        ApplicationId='string',
        MaxItems=123,
        NextToken='string',
        SemanticVersion='string'
    )
    
  :type ApplicationId: string
  :param ApplicationId: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the application.

    

  
  :type MaxItems: integer
  :param MaxItems: 

    The total number of items to return.

    

  
  :type NextToken: string
  :param NextToken: 

    A token to specify where to start paginating.

    

  
  :type SemanticVersion: string
  :param SemanticVersion: 

    The semantic version of the application to get.

    

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

    
    ::

      {
          'Dependencies': [
              {
                  'ApplicationId': 'string',
                  'SemanticVersion': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Success

      
      

      - **Dependencies** *(list) --* 

        An array of application summaries nested in the application.

        
        

        - *(dict) --* 

          A nested application summary.

          
          

          - **ApplicationId** *(string) --* 

            The Amazon Resource Name (ARN) of the nested application.

            
          

          - **SemanticVersion** *(string) --* 

            The semantic version of the nested application.

            
      
    
      

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

        The token to request the next page of results.

        
  
  **Exceptions**
  
  *   :py:class:`ServerlessApplicationRepository.Client.exceptions.NotFoundException`

  
  *   :py:class:`ServerlessApplicationRepository.Client.exceptions.TooManyRequestsException`

  
  *   :py:class:`ServerlessApplicationRepository.Client.exceptions.BadRequestException`

  
  *   :py:class:`ServerlessApplicationRepository.Client.exceptions.InternalServerErrorException`

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

  