Update Browser Stream
| bedrockagentcore_update_browser_stream | R Documentation |
Updates a browser stream¶
Description¶
Updates a browser stream. To use this operation, you must have permissions to perform the bedrock:UpdateBrowserStream action.
Usage¶
bedrockagentcore_update_browser_stream(browserIdentifier, sessionId,
streamUpdate, clientToken)
Arguments¶
browserIdentifier |
[required] The identifier of the browser. |
sessionId |
[required] The identifier of the browser session. |
streamUpdate |
[required] The update to apply to the browser stream. |
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 ignores the request, but does not return an error. |
Value¶
A list with the following syntax:
list(
browserIdentifier = "string",
sessionId = "string",
streams = list(
automationStream = list(
streamEndpoint = "string",
streamStatus = "ENABLED"|"DISABLED"
),
liveViewStream = list(
streamEndpoint = "string"
)
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_browser_stream(
browserIdentifier = "string",
sessionId = "string",
streamUpdate = list(
automationStreamUpdate = list(
streamStatus = "ENABLED"|"DISABLED"
)
),
clientToken = "string"
)