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

*****************
list_applications
*****************



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

  

  Lists applications owned by the requester.

  

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


  **Request Syntax**
  ::

    response = client.list_applications(
        MaxItems=123,
        NextToken='string'
    )
    
  :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.

    

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

    
    ::

      {
          'Applications': [
              {
                  'ApplicationId': 'string',
                  'Author': 'string',
                  'CreationTime': 'string',
                  'Description': 'string',
                  'HomePageUrl': 'string',
                  'Labels': [
                      'string',
                  ],
                  'Name': 'string',
                  'SpdxLicenseId': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Success

      
      

      - **Applications** *(list) --* 

        An array of application summaries.

        
        

        - *(dict) --* 

          Summary of details about the application.

          
          

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

            The application Amazon Resource Name (ARN).

            
          

          - **Author** *(string) --* 

            The name of the author publishing the app.

            

            Minimum length=1. Maximum length=127.

            

            Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";

            
          

          - **CreationTime** *(string) --* 

            The date and time this resource was created.

            
          

          - **Description** *(string) --* 

            The description of the application.

            

            Minimum length=1. Maximum length=256

            
          

          - **HomePageUrl** *(string) --* 

            A URL with more information about the application, for example the location of your GitHub repository for the application.

            
          

          - **Labels** *(list) --* 

            Labels to improve discovery of apps in search results.

            

            Minimum length=1. Maximum length=127. Maximum number of labels: 10

            

            Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";

            
            

            - *(string) --* 
        
          

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

            The name of the application.

            

            Minimum length=1. Maximum length=140

            

            Pattern: "[a-zA-Z0-9\\-]+";

            
          

          - **SpdxLicenseId** *(string) --* 

            A valid identifier from `https\://spdx.org/licenses/ <https://spdx.org/licenses/>`__.

            
      
    
      

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

        The token to request the next page of results.

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

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

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

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

  