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

*******************
get_browser_profile
*******************



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

  

  Gets information about a browser profile.

  

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


  **Request Syntax**
  ::

    response = client.get_browser_profile(
        profileId='string'
    )
    
  :type profileId: string
  :param profileId: **[REQUIRED]** 

    The unique identifier of the browser profile to retrieve.

    

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

    
    ::

      {
          'profileId': 'string',
          'profileArn': 'string',
          'name': 'string',
          'description': 'string',
          'status': 'READY'|'DELETING'|'DELETED'|'SAVING',
          'createdAt': datetime(2015, 1, 1),
          'lastUpdatedAt': datetime(2015, 1, 1),
          'lastSavedAt': datetime(2015, 1, 1),
          'lastSavedBrowserSessionId': 'string',
          'lastSavedBrowserId': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The unique identifier of the browser profile.

        
      

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

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

        
      

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

        The name of the browser profile.

        
      

      - **description** *(string) --* 

        The description of the browser profile.

        
      

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

        The current status of the browser profile.

        
      

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

        The timestamp when the browser profile was created.

        
      

      - **lastUpdatedAt** *(datetime) --* 

        The timestamp when the browser profile was last updated.

        
      

      - **lastSavedAt** *(datetime) --* 

        The timestamp when browser session data was last saved to this profile.

        
      

      - **lastSavedBrowserSessionId** *(string) --* 

        The identifier of the browser session from which data was last saved to this profile.

        
      

      - **lastSavedBrowserId** *(string) --* 

        The identifier of the browser from which data was last saved to this profile.

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

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

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

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

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

  