Skip to content

Create Browser Profile

bedrockagentcorecontrol_create_browser_profile R Documentation

Creates a browser profile in Amazon Bedrock AgentCore

Description

Creates a browser profile in Amazon Bedrock AgentCore. A browser profile stores persistent browser data such as cookies, local storage, session storage, and browsing history that can be saved from browser sessions and reused in subsequent sessions.

Usage

bedrockagentcorecontrol_create_browser_profile(name, description,
  clientToken, tags)

Arguments

name

[required] The name of the browser profile. The name must be unique within your account and can contain alphanumeric characters and underscores.

description

A description of the browser profile. Use this field to describe the purpose or contents of the profile.

clientToken

A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock AgentCore ignores the request but does not return an error.

tags

A map of tag keys and values to assign to the browser profile. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.

Value

A list with the following syntax:

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

Request syntax

svc$create_browser_profile(
  name = "string",
  description = "string",
  clientToken = "string",
  tags = list(
    "string"
  )
)