Skip to content

List Browsers

bedrockagentcorecontrol_list_browsers R Documentation

Lists all custom browsers in your account

Description

Lists all custom browsers in your account.

Usage

bedrockagentcorecontrol_list_browsers(maxResults, nextToken, type)

Arguments

maxResults

The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.

nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

type

The type of browsers to list. If not specified, all browser types are returned.

Value

A list with the following syntax:

list(
  browserSummaries = list(
    list(
      browserId = "string",
      browserArn = "string",
      name = "string",
      description = "string",
      status = "CREATING"|"CREATE_FAILED"|"READY"|"DELETING"|"DELETE_FAILED"|"DELETED",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_browsers(
  maxResults = 123,
  nextToken = "string",
  type = "SYSTEM"|"CUSTOM"
)