:doc:`PartnerCentralAccountAPI <../../partnercentral-account>` / Paginator / ListConnectionInvitations

*************************
ListConnectionInvitations
*************************



.. py:class:: PartnerCentralAccountAPI.Paginator.ListConnectionInvitations

  ::

    
    paginator = client.get_paginator('list_connection_invitations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`PartnerCentralAccountAPI.Client.list_connection_invitations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListConnectionInvitations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Catalog='string',
          ConnectionType='OPPORTUNITY_COLLABORATION'|'SUBSIDIARY',
          OtherParticipantIdentifiers=[
              'string',
          ],
          ParticipantType='SENDER'|'RECEIVER',
          Status='PENDING'|'ACCEPTED'|'REJECTED'|'CANCELED'|'EXPIRED',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Catalog: string
    :param Catalog: **[REQUIRED]** 

      The catalog identifier for the partner account.

      

    
    :type ConnectionType: string
    :param ConnectionType: 

      Filter results by connection type (e.g., reseller, distributor, technology partner).

      

    
    :type OtherParticipantIdentifiers: list
    :param OtherParticipantIdentifiers: 

      Filter results by specific participant identifiers.

      

    
      - *(string) --* 

      
  
    :type ParticipantType: string
    :param ParticipantType: 

      Filter results by participant type (inviter or invitee).

      

    
    :type Status: string
    :param Status: 

      Filter results by invitation status (pending, accepted, rejected, canceled, expired).

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'ConnectionInvitationSummaries': [
                {
                    'Catalog': 'string',
                    'Id': 'string',
                    'Arn': 'string',
                    'ConnectionId': 'string',
                    'ConnectionType': 'OPPORTUNITY_COLLABORATION'|'SUBSIDIARY',
                    'CreatedAt': datetime(2015, 1, 1),
                    'UpdatedAt': datetime(2015, 1, 1),
                    'ExpiresAt': datetime(2015, 1, 1),
                    'OtherParticipantIdentifier': 'string',
                    'ParticipantType': 'SENDER'|'RECEIVER',
                    'Status': 'PENDING'|'ACCEPTED'|'REJECTED'|'CANCELED'|'EXPIRED'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ConnectionInvitationSummaries** *(list) --* 

          A list of connection invitation summaries matching the specified criteria.

          
          

          - *(dict) --* 

            A summary view of a connection invitation containing key information without full details.

            
            

            - **Catalog** *(string) --* 

              The catalog identifier where the connection invitation exists.

              
            

            - **Id** *(string) --* 

              The unique identifier of the connection invitation.

              
            

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

              The Amazon Resource Name (ARN) of the connection invitation.

              
            

            - **ConnectionId** *(string) --* 

              The identifier of the connection associated with this invitation.

              
            

            - **ConnectionType** *(string) --* 

              The type of connection being requested in the invitation.

              
            

            - **CreatedAt** *(datetime) --* 

              The timestamp when the connection invitation was created.

              
            

            - **UpdatedAt** *(datetime) --* 

              The timestamp when the connection invitation was last updated.

              
            

            - **ExpiresAt** *(datetime) --* 

              The timestamp when the connection invitation will expire.

              
            

            - **OtherParticipantIdentifier** *(string) --* 

              The identifier of the other participant in the connection invitation.

              
            

            - **ParticipantType** *(string) --* 

              The type of participant (inviter or invitee) in the connection invitation.

              
            

            - **Status** *(string) --* 

              The current status of the connection invitation.

              
        
      
    