:doc:`ChimeSDKIdentity <../../chime-sdk-identity>` / Client / describe_app_instance

*********************
describe_app_instance
*********************



.. py:method:: ChimeSDKIdentity.Client.describe_app_instance(**kwargs)

  

  Returns the full details of an ``AppInstance``.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DescribeAppInstance>`_  


  **Request Syntax**
  ::

    response = client.describe_app_instance(
        AppInstanceArn='string'
    )
    
  :type AppInstanceArn: string
  :param AppInstanceArn: **[REQUIRED]** 

    The ARN of the ``AppInstance``.

    

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

    
    ::

      {
          'AppInstance': {
              'AppInstanceArn': 'string',
              'Name': 'string',
              'CreatedTimestamp': datetime(2015, 1, 1),
              'LastUpdatedTimestamp': datetime(2015, 1, 1),
              'Metadata': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AppInstance** *(dict) --* 

        The ARN, metadata, created and last-updated timestamps, and the name of the ``AppInstance``. All timestamps use epoch milliseconds.

        
        

        - **AppInstanceArn** *(string) --* 

          The ARN of the messaging instance.

          
        

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

          The name of an ``AppInstance``.

          
        

        - **CreatedTimestamp** *(datetime) --* 

          The time at which an ``AppInstance`` was created. In epoch milliseconds.

          
        

        - **LastUpdatedTimestamp** *(datetime) --* 

          The time an ``AppInstance`` was last updated. In epoch milliseconds.

          
        

        - **Metadata** *(string) --* 

          The metadata of an ``AppInstance``.

          
    
  
  **Exceptions**
  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.BadRequestException`

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

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ThrottledClientException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.UnauthorizedClientException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`ChimeSDKIdentity.Client.exceptions.ServiceFailureException`

  