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

*************
list_browsers
*************



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

  

  Lists all custom browsers in your account.

  

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


  **Request Syntax**
  ::

    response = client.list_browsers(
        maxResults=123,
        nextToken='string',
        type='SYSTEM'|'CUSTOM'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    

  
  :type type: string
  :param type: 

    The type of browsers to list. If not specified, all browser types are returned.

    

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

    
    ::

      {
          'browserSummaries': [
              {
                  'browserId': 'string',
                  'browserArn': 'string',
                  'name': 'string',
                  'description': 'string',
                  'status': 'CREATING'|'CREATE_FAILED'|'READY'|'DELETING'|'DELETE_FAILED'|'DELETED',
                  'createdAt': datetime(2015, 1, 1),
                  'lastUpdatedAt': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **browserSummaries** *(list) --* 

        The list of browser summaries.

        
        

        - *(dict) --* 

          Contains summary information about a browser. A browser enables Amazon Bedrock AgentCore Agent to interact with web content.

          
          

          - **browserId** *(string) --* 

            The unique identifier of the browser.

            
          

          - **browserArn** *(string) --* 

            The Amazon Resource Name (ARN) of the browser.

            
          

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

            The name of the browser.

            
          

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

            The description of the browser.

            
          

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

            The current status of the browser.

            
          

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

            The timestamp when the browser was created.

            
          

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

            The timestamp when the browser was last updated.

            
      
    
      

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

  