Get Session
workspacesweb_get_session | R Documentation |
Gets information for a secure browser session¶
Description¶
Gets information for a secure browser session.
Usage¶
workspacesweb_get_session(portalId, sessionId)
Arguments¶
portalId |
[required] The ID of the web portal for the session. |
sessionId |
[required] The ID of the session. |
Value¶
A list with the following syntax:
list(
session = list(
clientIpAddresses = list(
"string"
),
endTime = as.POSIXct(
"2015-01-01"
),
portalArn = "string",
sessionId = "string",
startTime = as.POSIXct(
"2015-01-01"
),
status = "Active"|"Terminated",
username = "string"
)
)
Request syntax¶
svc$get_session(
portalId = "string",
sessionId = "string"
)