Get Stage Session
ivsrealtime_get_stage_session | R Documentation |
Gets information for the specified stage session¶
Description¶
Gets information for the specified stage session.
Usage¶
ivsrealtime_get_stage_session(stageArn, sessionId)
Arguments¶
stageArn |
[required] ARN of the stage for which the information is to be retrieved. |
sessionId |
[required] ID of a session within the stage. |
Value¶
A list with the following syntax:
list(
stageSession = list(
sessionId = "string",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$get_stage_session(
stageArn = "string",
sessionId = "string"
)