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

************************************
list_integration_resource_properties
************************************



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

  

  List integration resource properties for a single customer. It supports the filters, maxRecords and markers.

  

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


  **Request Syntax**
  ::

    response = client.list_integration_resource_properties(
        Marker='string',
        Filters=[
            {
                'Name': 'string',
                'Values': [
                    'string',
                ]
            },
        ],
        MaxRecords=123
    )
    
  :type Marker: string
  :param Marker: 

    This is the pagination token for next page, initial value is ``null``.

    

  
  :type Filters: list
  :param Filters: 

    A list of filters, supported filter Key is ``SourceArn`` and ``TargetArn``.

    

  
    - *(dict) --* 

      A filter for integration resource properties.

      

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

        The name of the filter. Supported filter keys are ``SourceArn`` and ``TargetArn``.

        

      
      - **Values** *(list) --* 

        A list of filter values.

        

      
        - *(string) --* 

        
    
    

  :type MaxRecords: integer
  :param MaxRecords: 

    This is total number of items to be evaluated.

    

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

    
    ::

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

    

    - *(dict) --* 
      

      - **IntegrationResourcePropertyList** *(list) --* 

        A list of integration resource property meeting the filter criteria.

        
        

        - *(dict) --* 

          A structure representing an integration resource property.

          
          

          - **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.

              
        
      
    
      

      - **Marker** *(string) --* 

        This is the pagination token for the next page.

        
  
  **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`

  