Get Browser
| bedrockagentcorecontrol_get_browser | R Documentation |
Gets information about a custom browser¶
Description¶
Gets information about a custom browser.
Usage¶
bedrockagentcorecontrol_get_browser(browserId)
Arguments¶
browserId |
[required] The unique identifier of the browser to retrieve. |
Value¶
A list with the following syntax:
list(
browserId = "string",
browserArn = "string",
name = "string",
description = "string",
executionRoleArn = "string",
networkConfiguration = list(
networkMode = "PUBLIC"|"VPC",
vpcConfig = list(
securityGroups = list(
"string"
),
subnets = list(
"string"
),
requireServiceS3Endpoint = TRUE|FALSE
)
),
recording = list(
enabled = TRUE|FALSE,
s3Location = list(
bucket = "string",
prefix = "string",
versionId = "string"
)
),
browserSigning = list(
enabled = TRUE|FALSE
),
enterprisePolicies = list(
list(
location = list(
s3 = list(
bucket = "string",
prefix = "string",
versionId = "string"
)
),
type = "MANAGED"|"RECOMMENDED"
)
),
certificates = list(
list(
location = list(
secretsManager = list(
secretArn = "string"
)
)
)
),
status = "CREATING"|"CREATE_FAILED"|"READY"|"DELETING"|"DELETE_FAILED"|"DELETED",
failureReason = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_browser(
browserId = "string"
)