BedrockAgentCoreControl / Client / list_browsers

list_browsers

BedrockAgentCoreControl.Client.list_browsers(**kwargs)

Lists all custom browsers in your account.

See also: AWS API Documentation

Request Syntax

response = client.list_browsers(
    maxResults=123,
    nextToken='string',
    type='SYSTEM'|'CUSTOM'
)
Parameters:
  • maxResults (integer) – The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.

  • nextToken (string) – 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 (string) – The type of browsers to list. If not specified, all browser types are returned.

Return type:

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

  • BedrockAgentCoreControl.Client.exceptions.AccessDeniedException

  • BedrockAgentCoreControl.Client.exceptions.ValidationException

  • BedrockAgentCoreControl.Client.exceptions.ThrottlingException

  • BedrockAgentCoreControl.Client.exceptions.InternalServerException