Skip to content

List Team Members

codestar_list_team_members R Documentation

Lists all team members associated with a project

Description

Lists all team members associated with a project.

Usage

codestar_list_team_members(projectId, nextToken, maxResults)

Arguments

projectId

[required] The ID of the project for which you want to list team members.

nextToken

The continuation token for the next set of results, if the results cannot be returned in one response.

maxResults

The maximum number of team members you want returned in a response.

Value

A list with the following syntax:

list(
  teamMembers = list(
    list(
      userArn = "string",
      projectRole = "string",
      remoteAccessAllowed = TRUE|FALSE
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_team_members(
  projectId = "string",
  nextToken = "string",
  maxResults = 123
)