:doc:`CodeDeploy <../../codedeploy>` / Client / batch_get_applications

**********************
batch_get_applications
**********************



.. py:method:: CodeDeploy.Client.batch_get_applications(**kwargs)

  

  Gets information about one or more applications. The maximum number of applications that can be returned is 100.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetApplications>`_  


  **Request Syntax**
  ::

    response = client.batch_get_applications(
        applicationNames=[
            'string',
        ]
    )
    
  :type applicationNames: list
  :param applicationNames: **[REQUIRED]** 

    A list of application names separated by spaces. The maximum number of application names you can specify is 100.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'applicationsInfo': [
              {
                  'applicationId': 'string',
                  'applicationName': 'string',
                  'createTime': datetime(2015, 1, 1),
                  'linkedToGitHub': True|False,
                  'gitHubAccountName': 'string',
                  'computePlatform': 'Server'|'Lambda'|'ECS'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Represents the output of a ``BatchGetApplications`` operation.

      
      

      - **applicationsInfo** *(list) --* 

        Information about the applications.

        
        

        - *(dict) --* 

          Information about an application.

          
          

          - **applicationId** *(string) --* 

            The application ID.

            
          

          - **applicationName** *(string) --* 

            The application name.

            
          

          - **createTime** *(datetime) --* 

            The time at which the application was created.

            
          

          - **linkedToGitHub** *(boolean) --* 

            True if the user has authenticated with GitHub for the specified application. Otherwise, false.

            
          

          - **gitHubAccountName** *(string) --* 

            The name for a connection to a GitHub account.

            
          

          - **computePlatform** *(string) --* 

            The destination platform type for deployment of the application ( ``Lambda`` or ``Server``).

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CodeDeploy.Client.exceptions.ApplicationNameRequiredException`

  
  *   :py:class:`CodeDeploy.Client.exceptions.InvalidApplicationNameException`

  
  *   :py:class:`CodeDeploy.Client.exceptions.ApplicationDoesNotExistException`

  
  *   :py:class:`CodeDeploy.Client.exceptions.BatchLimitExceededException`

  