List Stream Sessions
ivs_list_stream_sessions | R Documentation |
Gets a summary of current and previous streams for a specified channel in your account, in the AWS region where the API request is processed¶
Description¶
Gets a summary of current and previous streams for a specified channel in your account, in the AWS region where the API request is processed.
Usage¶
ivs_list_stream_sessions(channelArn, maxResults, nextToken)
Arguments¶
channelArn |
[required] Channel ARN used to filter the list. |
maxResults |
Maximum number of streams to return. Default: 100. |
nextToken |
The first stream to retrieve. This is used for pagination; see
the |
Value¶
A list with the following syntax:
list(
nextToken = "string",
streamSessions = list(
list(
endTime = as.POSIXct(
"2015-01-01"
),
hasErrorEvent = TRUE|FALSE,
startTime = as.POSIXct(
"2015-01-01"
),
streamId = "string"
)
)
)
Request syntax¶
svc$list_stream_sessions(
channelArn = "string",
maxResults = 123,
nextToken = "string"
)