BedrockAgentCoreControl / Paginator / ListBrowserProfiles

ListBrowserProfiles

class BedrockAgentCoreControl.Paginator.ListBrowserProfiles
paginator = client.get_paginator('list_browser_profiles')
paginate(**kwargs)

Creates an iterator that will paginate through responses from BedrockAgentCoreControl.Client.list_browser_profiles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:

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 NextToken will 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 NextToken from a previous response.

Return type:

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 resume pagination.