:doc:`AppFabric <../../appfabric>` / Client / get_ingestion

*************
get_ingestion
*************



.. py:method:: AppFabric.Client.get_ingestion(**kwargs)

  

  Returns information about an ingestion.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetIngestion>`_  


  **Request Syntax**
  ::

    response = client.get_ingestion(
        appBundleIdentifier='string',
        ingestionIdentifier='string'
    )
    
  :type appBundleIdentifier: string
  :param appBundleIdentifier: **[REQUIRED]** 

    The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

    

  
  :type ingestionIdentifier: string
  :param ingestionIdentifier: **[REQUIRED]** 

    The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.

    

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

    
    ::

      {
          'ingestion': {
              'arn': 'string',
              'appBundleArn': 'string',
              'app': 'string',
              'tenantId': 'string',
              'createdAt': datetime(2015, 1, 1),
              'updatedAt': datetime(2015, 1, 1),
              'state': 'enabled'|'disabled',
              'ingestionType': 'auditLog'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ingestion** *(dict) --* 

        Contains information about an ingestion.

        
        

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

          The Amazon Resource Name (ARN) of the ingestion.

          
        

        - **appBundleArn** *(string) --* 

          The Amazon Resource Name (ARN) of the app bundle for the ingestion.

          
        

        - **app** *(string) --* 

          The name of the application.

          
        

        - **tenantId** *(string) --* 

          The ID of the application tenant.

          
        

        - **createdAt** *(datetime) --* 

          The timestamp of when the ingestion was created.

          
        

        - **updatedAt** *(datetime) --* 

          The timestamp of when the ingestion was last updated.

          
        

        - **state** *(string) --* 

          The status of the ingestion.

          
        

        - **ingestionType** *(string) --* 

          The type of the ingestion.

          
    
  
  **Exceptions**
  
  *   :py:class:`AppFabric.Client.exceptions.InternalServerException`

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

  
  *   :py:class:`AppFabric.Client.exceptions.ValidationException`

  
  *   :py:class:`AppFabric.Client.exceptions.ResourceNotFoundException`

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

  