Get Stage
ivsrealtime_get_stage | R Documentation |
Gets information for the specified stage¶
Description¶
Gets information for the specified stage.
Usage¶
Arguments¶
arn
[required] ARN of the stage for which the information is to be retrieved.
Value¶
A list with the following syntax:
list(
stage = list(
arn = "string",
name = "string",
activeSessionId = "string",
tags = list(
"string"
),
autoParticipantRecordingConfiguration = list(
storageConfigurationArn = "string",
mediaTypes = list(
"AUDIO_VIDEO"|"AUDIO_ONLY"|"NONE"
),
thumbnailConfiguration = list(
targetIntervalSeconds = 123,
storage = list(
"SEQUENTIAL"|"LATEST"
),
recordingMode = "INTERVAL"|"DISABLED"
)
),
endpoints = list(
events = "string",
whip = "string",
rtmp = "string",
rtmps = "string"
)
)
)