Skip to content

List Launch Profile Members

nimblestudio_list_launch_profile_members R Documentation

Get all users in a given launch profile membership

Description

Get all users in a given launch profile membership.

Usage

nimblestudio_list_launch_profile_members(launchProfileId, maxResults,
  nextToken, studioId)

Arguments

launchProfileId

[required] The ID of the launch profile used to control access from the streaming session.

maxResults

The max number of results to return in the response.

nextToken

The token for the next set of results, or null if there are no more results.

studioId

[required] The studio ID.

Value

A list with the following syntax:

list(
  members = list(
    list(
      identityStoreId = "string",
      persona = "USER",
      principalId = "string",
      sid = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_launch_profile_members(
  launchProfileId = "string",
  maxResults = 123,
  nextToken = "string",
  studioId = "string"
)