:doc:`Glue <../../glue>` / Client / get_integration_resource_property

*********************************
get_integration_resource_property
*********************************



.. py:method:: Glue.Client.get_integration_resource_property(**kwargs)

  

  This API is used for fetching the ``ResourceProperty`` of the Glue connection (for the source) or Glue database ARN (for the target)

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetIntegrationResourceProperty>`_  


  **Request Syntax**
  ::

    response = client.get_integration_resource_property(
        ResourceArn='string'
    )
    
  :type ResourceArn: string
  :param ResourceArn: **[REQUIRED]** 

    The connection ARN of the source, or the database ARN of the target.

    

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

    
    ::

      {
          'ResourceArn': 'string',
          'ResourcePropertyArn': 'string',
          'SourceProcessingProperties': {
              'RoleArn': 'string'
          },
          'TargetProcessingProperties': {
              'RoleArn': 'string',
              'KmsArn': 'string',
              'ConnectionName': 'string',
              'EventBusArn': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ResourceArn** *(string) --* 

        The connection ARN of the source, or the database ARN of the target.

        
      

      - **ResourcePropertyArn** *(string) --* 

        The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*

        
      

      - **SourceProcessingProperties** *(dict) --* 

        The resource properties associated with the integration source.

        
        

        - **RoleArn** *(string) --* 

          The IAM role to access the Glue connection.

          
    
      

      - **TargetProcessingProperties** *(dict) --* 

        The resource properties associated with the integration target.

        
        

        - **RoleArn** *(string) --* 

          The IAM role to access the Glue database.

          
        

        - **KmsArn** *(string) --* 

          The ARN of the KMS key used for encryption.

          
        

        - **ConnectionName** *(string) --* 

          The Glue network connection to configure the Glue job running in the customer VPC.

          
        

        - **EventBusArn** *(string) --* 

          The ARN of an Eventbridge event bus to receive the integration status notification.

          
    
  
  **Exceptions**
  
  *   :py:class:`Glue.Client.exceptions.ValidationException`

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

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

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

  
  *   :py:class:`Glue.Client.exceptions.EntityNotFoundException`

  
  *   :py:class:`Glue.Client.exceptions.InternalServiceException`

  
  *   :py:class:`Glue.Client.exceptions.InvalidInputException`

  