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

*********************
list_browser_profiles
*********************



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

  

  Lists all browser profiles in your account.

  

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


  **Request Syntax**
  ::

    response = client.list_browser_profiles(
        maxResults=123,
        nextToken='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return in the response.

    

  
  :type nextToken: string
  :param nextToken: 

    A token to retrieve the next page of results.

    

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

    
    ::

      {
          'profileSummaries': [
              {
                  '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'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **profileSummaries** *(list) --* 

        The list of browser profile summaries.

        
        

        - *(dict) --* 

          Contains summary information about a browser profile. A browser profile stores persistent browser data that can be reused across browser sessions.

          
          

          - **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. Possible values include READY, SAVING, DELETING, and DELETED.

            
          

          - **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.

            
      
    
      

      - **nextToken** *(string) --* 

        A token to retrieve the next page of results.

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

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

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

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

  