:doc:`B2BI <../../b2bi>` / Client / update_profile

**************
update_profile
**************



.. py:method:: B2BI.Client.update_profile(**kwargs)

  

  Updates the specified parameters for a profile. A profile is the mechanism used to create the concept of a private network.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/b2bi-2022-06-23/UpdateProfile>`_  


  **Request Syntax**
  ::

    response = client.update_profile(
        profileId='string',
        name='string',
        email='string',
        phone='string',
        businessName='string'
    )
    
  :type profileId: string
  :param profileId: **[REQUIRED]** 

    Specifies the unique, system-generated identifier for the profile.

    

  
  :type name: string
  :param name: 

    The name of the profile, used to identify it.

    

  
  :type email: string
  :param email: 

    Specifies the email address associated with this customer profile.

    

  
  :type phone: string
  :param phone: 

    Specifies the phone number associated with the profile.

    

  
  :type businessName: string
  :param businessName: 

    Specifies the name for the business associated with this profile.

    

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

    
    ::

      {
          'profileId': 'string',
          'profileArn': 'string',
          'name': 'string',
          'email': 'string',
          'phone': 'string',
          'businessName': 'string',
          'logging': 'ENABLED'|'DISABLED',
          'logGroupName': 'string',
          'createdAt': datetime(2015, 1, 1),
          'modifiedAt': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **profileId** *(string) --* 

        Returns the unique, system-generated identifier for the profile.

        
      

      - **profileArn** *(string) --* 

        Returns an Amazon Resource Name (ARN) for the profile.

        
      

      - **name** *(string) --* 

        Returns the name of the profile.

        
      

      - **email** *(string) --* 

        Returns the email address associated with this customer profile.

        
      

      - **phone** *(string) --* 

        Returns the phone number associated with the profile.

        
      

      - **businessName** *(string) --* 

        Returns the name for the business associated with this profile.

        
      

      - **logging** *(string) --* 

        Specifies whether or not logging is enabled for this profile.

        
      

      - **logGroupName** *(string) --* 

        Returns the name of the logging group.

        
      

      - **createdAt** *(datetime) --* 

        Returns a timestamp for creation date and time of the profile.

        
      

      - **modifiedAt** *(datetime) --* 

        Returns a timestamp for last time the profile was modified.

        
  
  **Exceptions**
  
  *   :py:class:`B2BI.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`B2BI.Client.exceptions.ConflictException`

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

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

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

  
  *   :py:class:`B2BI.Client.exceptions.ServiceQuotaExceededException`

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

  