Batch Get Stream Key
ivs_batch_get_stream_key | R Documentation |
Performs GetStreamKey on multiple ARNs simultaneously¶
Description¶
Performs get_stream_key
on multiple ARNs simultaneously.
Usage¶
Arguments¶
arns
[required] Array of ARNs, one per stream key.
Value¶
A list with the following syntax:
list(
streamKeys = list(
list(
arn = "string",
value = "string",
channelArn = "string",
tags = list(
"string"
)
)
),
errors = list(
list(
arn = "string",
code = "string",
message = "string"
)
)
)