Skip to content

List Stages

ivsrealtime_list_stages R Documentation

Gets summary information about all stages in your account, in the AWS region where the API request is processed

Description

Gets summary information about all stages in your account, in the AWS region where the API request is processed.

Usage

ivsrealtime_list_stages(nextToken, maxResults)

Arguments

nextToken

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

maxResults

Maximum number of results to return. Default: 50.

Value

A list with the following syntax:

list(
  stages = list(
    list(
      arn = "string",
      name = "string",
      activeSessionId = "string",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_stages(
  nextToken = "string",
  maxResults = 123
)