:doc:`AppRegistry <../../servicecatalog-appregistry>` / Client / list_applications

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



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

  

  Retrieves a list of all of your applications. Results are paginated.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplications>`_  


  **Request Syntax**
  ::

    response = client.list_applications(
        nextToken='string',
        maxResults=123
    )
    
  :type nextToken: string
  :param nextToken: 

    The token to use to get the next page of results after a previous API call.

    

  
  :type maxResults: integer
  :param maxResults: 

    The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

    

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

    
    ::

      {
          'applications': [
              {
                  'id': 'string',
                  'arn': 'string',
                  'name': 'string',
                  'description': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdateTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **applications** *(list) --* 

        This list of applications.

        
        

        - *(dict) --* 

          Summary of a Amazon Web Services Service Catalog AppRegistry application.

          
          

          - **id** *(string) --* 

            The identifier of the application.

            
          

          - **arn** *(string) --* 

            The Amazon resource name (ARN) that specifies the application across services.

            
          

          - **name** *(string) --* 

            The name of the application. The name must be unique in the region in which you are creating the application.

            
          

          - **description** *(string) --* 

            The description of the application.

            
          

          - **creationTime** *(datetime) --* 

            The ISO-8601 formatted timestamp of the moment when the application was created.

            
          

          - **lastUpdateTime** *(datetime) --* 

            The ISO-8601 formatted timestamp of the moment when the application was last updated.

            
      
    
      

      - **nextToken** *(string) --* 

        The token to use to get the next page of results after a previous API call.

        
  
  **Exceptions**
  
  *   :py:class:`AppRegistry.Client.exceptions.ValidationException`

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

  