Skip to content

List Stream Keys

ivs_list_stream_keys R Documentation

Gets summary information about stream keys for the specified channel

Description

Gets summary information about stream keys for the specified channel.

Usage

ivs_list_stream_keys(channelArn, maxResults, nextToken)

Arguments

channelArn

[required] Channel ARN used to filter the list.

maxResults

Maximum number of streamKeys to return. Default: 1.

nextToken

The first stream key to retrieve. This is used for pagination; see the nextToken response field.

Value

A list with the following syntax:

list(
  nextToken = "string",
  streamKeys = list(
    list(
      arn = "string",
      channelArn = "string",
      tags = list(
        "string"
      )
    )
  )
)

Request syntax

svc$list_stream_keys(
  channelArn = "string",
  maxResults = 123,
  nextToken = "string"
)