:doc:`PartnerCentralAccountAPI <../../partnercentral-account>` / Client / put_alliance_lead_contact

*************************
put_alliance_lead_contact
*************************



.. py:method:: PartnerCentralAccountAPI.Client.put_alliance_lead_contact(**kwargs)

  

  Creates or updates the alliance lead contact information for a partner account.

  

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


  **Request Syntax**
  ::

    response = client.put_alliance_lead_contact(
        Catalog='string',
        Identifier='string',
        AllianceLeadContact={
            'FirstName': 'string',
            'LastName': 'string',
            'Email': 'string',
            'BusinessTitle': 'string'
        },
        EmailVerificationCode='string'
    )
    
  :type Catalog: string
  :param Catalog: **[REQUIRED]** 

    The catalog identifier for the partner account.

    

  
  :type Identifier: string
  :param Identifier: **[REQUIRED]** 

    The unique identifier of the partner account.

    

  
  :type AllianceLeadContact: dict
  :param AllianceLeadContact: **[REQUIRED]** 

    The alliance lead contact information to set for the partner account.

    

  
    - **FirstName** *(string) --* **[REQUIRED]** 

      The first name of the alliance lead contact person.

      

    
    - **LastName** *(string) --* **[REQUIRED]** 

      The last name of the alliance lead contact person.

      

    
    - **Email** *(string) --* **[REQUIRED]** 

      The email address of the alliance lead contact person.

      

    
    - **BusinessTitle** *(string) --* **[REQUIRED]** 

      The business title or role of the alliance lead contact person.

      

    
  
  :type EmailVerificationCode: string
  :param EmailVerificationCode: 

    The verification code sent to the alliance lead contact's email to confirm the update.

    

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

    
    ::

      {
          'Catalog': 'string',
          'Arn': 'string',
          'Id': 'string',
          'AllianceLeadContact': {
              'FirstName': 'string',
              'LastName': 'string',
              'Email': 'string',
              'BusinessTitle': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The catalog identifier for the partner account.

        
      

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

        The Amazon Resource Name (ARN) of the partner account.

        
      

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

        The unique identifier of the partner account.

        
      

      - **AllianceLeadContact** *(dict) --* 

        The updated alliance lead contact information.

        
        

        - **FirstName** *(string) --* 

          The first name of the alliance lead contact person.

          
        

        - **LastName** *(string) --* 

          The last name of the alliance lead contact person.

          
        

        - **Email** *(string) --* 

          The email address of the alliance lead contact person.

          
        

        - **BusinessTitle** *(string) --* 

          The business title or role of the alliance lead contact person.

          
    
  
  **Exceptions**
  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.ResourceNotFoundException`

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

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

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

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

  