List Stage Sessions
ivsrealtime_list_stage_sessions | R Documentation |
Gets all sessions for a specified stage¶
Description¶
Gets all sessions for a specified stage.
Usage¶
ivsrealtime_list_stage_sessions(stageArn, nextToken, maxResults)
Arguments¶
stageArn |
[required] Stage ARN. |
nextToken |
The first stage session to retrieve. This is used for pagination;
see the |
maxResults |
Maximum number of results to return. Default: 50. |
Value¶
A list with the following syntax:
list(
stageSessions = list(
list(
sessionId = "string",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_stage_sessions(
stageArn = "string",
nextToken = "string",
maxResults = 123
)