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¶
Arguments¶
stageArn[required] Stage ARN.
nextTokenThe first stage session to retrieve. This is used for pagination; see the
nextTokenresponse field.maxResultsMaximum 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"
)