:doc:`AppConfig <../../appconfig>` / Client / get_application

***************
get_application
***************



.. py:method:: AppConfig.Client.get_application(**kwargs)

  

  Retrieves information about an application.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetApplication>`_  


  **Request Syntax**
  ::

    response = client.get_application(
        ApplicationId='string'
    )
    
  :type ApplicationId: string
  :param ApplicationId: **[REQUIRED]** 

    The ID of the application you want to get.

    

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

    
    ::

      {
          'Id': 'string',
          'Name': 'string',
          'Description': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The application ID.

        
      

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

        The application name.

        
      

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

        The description of the application.

        
  
  **Exceptions**
  
  *   :py:class:`AppConfig.Client.exceptions.ResourceNotFoundException`

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

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

  

  **Examples**

  The following get-application example lists the details of the specified application.
  ::

    response = client.get_application(
        ApplicationId='339ohji',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'Id': '339ohji',
        'Name': 'example-application',
        'ResponseMetadata': {
            '...': '...',
        },
    }

  