:doc:`AppIntegrationsService <../../appintegrations>` / Client / list_applications

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



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

  

  Lists applications in the account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListApplications>`_  


  **Request Syntax**
  ::

    response = client.list_applications(
        NextToken='string',
        MaxResults=123,
        ApplicationType='STANDARD'|'SERVICE'|'MCP_SERVER'
    )
    
  :type NextToken: string
  :param NextToken: 

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per page.

    

  
  :type ApplicationType: string
  :param ApplicationType: 

    The type of application.

    

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

    
    ::

      {
          'Applications': [
              {
                  'Arn': 'string',
                  'Id': 'string',
                  'Name': 'string',
                  'Namespace': 'string',
                  'CreatedTime': datetime(2015, 1, 1),
                  'LastModifiedTime': datetime(2015, 1, 1),
                  'IsService': True|False,
                  'ApplicationType': 'STANDARD'|'SERVICE'|'MCP_SERVER'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The Applications associated with this account.

        
        

        - *(dict) --* 

          Summary information about the Application.

          
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the Application.

            
          

          - **Id** *(string) --* 

            A unique identifier for the Application.

            
          

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

            The name of the application.

            
          

          - **Namespace** *(string) --* 

            The namespace of the application.

            
          

          - **CreatedTime** *(datetime) --* 

            The time when the application was created.

            
          

          - **LastModifiedTime** *(datetime) --* 

            The time when the application was last modified.

            
          

          - **IsService** *(boolean) --* 

            Indicates whether the application is a service.

            
          

          - **ApplicationType** *(string) --* 

            The type of application.

            
      
    
      

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

        If there are additional results, this is the token for the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`AppIntegrationsService.Client.exceptions.InternalServiceError`

  
  *   :py:class:`AppIntegrationsService.Client.exceptions.ThrottlingException`

  
  *   :py:class:`AppIntegrationsService.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`AppIntegrationsService.Client.exceptions.AccessDeniedException`

  