:doc:`BedrockAgentCoreControl <../../bedrock-agentcore-control>` / Client / create_browser_profile

**********************
create_browser_profile
**********************



.. py:method:: BedrockAgentCoreControl.Client.create_browser_profile(**kwargs)

  

  Creates a browser profile in Amazon Bedrock AgentCore. A browser profile stores persistent browser data such as cookies, local storage, session storage, and browsing history that can be saved from browser sessions and reused in subsequent sessions.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateBrowserProfile>`_  


  **Request Syntax**
  ::

    response = client.create_browser_profile(
        name='string',
        description='string',
        clientToken='string',
        tags={
            'string': 'string'
        }
    )
    
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the browser profile. The name must be unique within your account and can contain alphanumeric characters and underscores.

    

  
  :type description: string
  :param description: 

    A description of the browser profile. Use this field to describe the purpose or contents of the profile.

    

  
  :type clientToken: string
  :param clientToken: 

    A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock AgentCore ignores the request but does not return an error.

    This field is autopopulated if not provided.

  
  :type tags: dict
  :param tags: 

    A map of tag keys and values to assign to the browser profile. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


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

    
    ::

      {
          'profileId': 'string',
          'profileArn': 'string',
          'createdAt': datetime(2015, 1, 1),
          'status': 'READY'|'DELETING'|'DELETED'|'SAVING'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The unique identifier of the created browser profile.

        
      

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

        The Amazon Resource Name (ARN) of the created browser profile.

        
      

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

        The timestamp when the browser profile was created.

        
      

      - **status** *(string) --* 

        The current status of the browser profile.

        
  
  **Exceptions**
  
  *   :py:class:`BedrockAgentCoreControl.Client.exceptions.ServiceQuotaExceededException`

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

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

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

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

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

  