List Browser Profiles
| bedrockagentcorecontrol_list_browser_profiles | R Documentation |
Lists all browser profiles in your account¶
Description¶
Lists all browser profiles in your account.
Usage¶
bedrockagentcorecontrol_list_browser_profiles(maxResults, nextToken,
name)
Arguments¶
maxResults |
The maximum number of results to return in the response. |
nextToken |
A token to retrieve the next page of results. |
name |
The name of the browser profile to filter results by. |
Value¶
A list with the following syntax:
list(
profileSummaries = list(
list(
profileId = "string",
profileArn = "string",
name = "string",
description = "string",
status = "READY"|"DELETING"|"DELETED"|"SAVING",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
lastSavedAt = as.POSIXct(
"2015-01-01"
),
lastSavedBrowserSessionId = "string",
lastSavedBrowserId = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_browser_profiles(
maxResults = 123,
nextToken = "string",
name = "string"
)