:doc:`ConnectCampaignServiceV2 <../../connectcampaignsv2>` / Client / list_connect_instance_integrations

**********************************
list_connect_instance_integrations
**********************************



.. py:method:: ConnectCampaignServiceV2.Client.list_connect_instance_integrations(**kwargs)

  

  Provides summary information about the integration under the specified Connect instance.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/connectcampaignsv2-2024-04-23/ListConnectInstanceIntegrations>`_  


  **Request Syntax**
  ::

    response = client.list_connect_instance_integrations(
        connectInstanceId='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type connectInstanceId: string
  :param connectInstanceId: **[REQUIRED]** 

    Amazon Connect Instance Id

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return per page.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next set of results.

    

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

    
    ::

      {
          'nextToken': 'string',
          'integrationSummaryList': [
              {
                  'customerProfiles': {
                      'domainArn': 'string',
                      'objectTypeNames': {
                          'string': 'string'
                      }
                  },
                  'qConnect': {
                      'knowledgeBaseArn': 'string'
                  },
                  'lambda': {
                      'functionArn': 'string'
                  }
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 

      The response for ListConnectInstanceIntegrations API.

      
      

      - **nextToken** *(string) --* 

        The token for the next set of results.

        
      

      - **integrationSummaryList** *(list) --* 

        A list of Amazon Connect Instance Integrations.

        
        

        - *(dict) --* 

          Integration summary for Connect instance.

          .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``customerProfiles``, ``qConnect``, ``lambda``.     If a client receives an unknown member it will     set ``SDK_UNKNOWN_MEMBER`` as the top level key,     which maps to the name or tag of the unknown     member. The structure of ``SDK_UNKNOWN_MEMBER`` is     as follows::

                    'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}


        
          

          - **customerProfiles** *(dict) --* 

            Customer Profiles integration summary

            
            

            - **domainArn** *(string) --* 

              Amazon Resource Names(ARN)

              
            

            - **objectTypeNames** *(dict) --* 

              Object type names map.

              
              

              - *(string) --* 

                Enumeration of Customer Profiles event type

                
                

                - *(string) --* 

                  Object type name

                  
          
        
        
          

          - **qConnect** *(dict) --* 

            Q Connect integration summary

            
            

            - **knowledgeBaseArn** *(string) --* 

              Amazon Resource Names(ARN)

              
        
          

          - **lambda** *(dict) --* 

            Lambda integration summary

            
            

            - **functionArn** *(string) --* 

              Lambda ARN for integration with Connect instances

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

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

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

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

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

  