BedrockAgentCoreControl / Paginator / ListBrowsers
ListBrowsers¶
- class BedrockAgentCoreControl.Paginator.ListBrowsers¶
paginator = client.get_paginator('list_browsers')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
BedrockAgentCoreControl.Client.list_browsers().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( type='SYSTEM'|'CUSTOM', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
type (string) – The type of browsers to list. If not specified, all browser types are returned.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- 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 resume pagination.