Skip to content

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

ivs_batch_get_stream_key(arns)

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"
    )
  )
)

Request syntax

svc$batch_get_stream_key(
  arns = list(
    "string"
  )
)