BedrockAgentCoreControl / Client / list_browser_profiles

list_browser_profiles

BedrockAgentCoreControl.Client.list_browser_profiles(**kwargs)

Lists all browser profiles in your account.

See also: AWS API Documentation

Request Syntax

response = client.list_browser_profiles(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of results to return in the response.

  • nextToken (string) – A token to retrieve the next page of results.

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 retrieve the next page of results.

Exceptions

  • BedrockAgentCoreControl.Client.exceptions.AccessDeniedException

  • BedrockAgentCoreControl.Client.exceptions.ValidationException

  • BedrockAgentCoreControl.Client.exceptions.ThrottlingException

  • BedrockAgentCoreControl.Client.exceptions.InternalServerException