:doc:`AppIntegrationsService <../../appintegrations>` / Client / list_data_integrations

**********************
list_data_integrations
**********************



.. py:method:: AppIntegrationsService.Client.list_data_integrations(**kwargs)

  

  Returns a paginated list of DataIntegrations in the account.

   

  .. note::

    

    You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the `CreateDataIntegration <https://docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html>`__ API.

    

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ListDataIntegrations>`_  


  **Request Syntax**
  ::

    response = client.list_data_integrations(
        NextToken='string',
        MaxResults=123
    )
    
  :type NextToken: string
  :param NextToken: 

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per page.

    

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

    
    ::

      {
          'DataIntegrations': [
              {
                  'Arn': 'string',
                  'Name': 'string',
                  'SourceURI': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **DataIntegrations** *(list) --* 

        The DataIntegrations associated with this account.

        
        

        - *(dict) --* 

          Summary information about the DataIntegration.

          
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the DataIntegration.

            
          

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

            The name of the DataIntegration.

            
          

          - **SourceURI** *(string) --* 

            The URI of the data source.

            
      
    
      

      - **NextToken** *(string) --* 

        If there are additional results, this is the token for the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`AppIntegrationsService.Client.exceptions.InternalServiceError`

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

  
  *   :py:class:`AppIntegrationsService.Client.exceptions.InvalidRequestException`

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

  