Skip to content

Get Browser Profile

bedrockagentcorecontrol_get_browser_profile R Documentation

Gets information about a browser profile

Description

Gets information about a browser profile.

Usage

bedrockagentcorecontrol_get_browser_profile(profileId)

Arguments

profileId

[required] The unique identifier of the browser profile to retrieve.

Value

A list with the following syntax:

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"
)

Request syntax

svc$get_browser_profile(
  profileId = "string"
)