Skip to content

Delete Browser Profile

bedrockagentcorecontrol_delete_browser_profile R Documentation

Deletes a browser profile

Description

Deletes a browser profile.

Usage

bedrockagentcorecontrol_delete_browser_profile(profileId, clientToken)

Arguments

profileId

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

clientToken

A unique, case-sensitive identifier to ensure idempotency of the request.

Value

A list with the following syntax:

list(
  profileId = "string",
  profileArn = "string",
  status = "READY"|"DELETING"|"DELETED"|"SAVING",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  lastSavedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$delete_browser_profile(
  profileId = "string",
  clientToken = "string"
)