List Project Memberships
| datazone_list_project_memberships | R Documentation |
Lists all members of the specified project¶
Description¶
Lists all members of the specified project.
Usage¶
datazone_list_project_memberships(domainIdentifier, maxResults,
nextToken, projectIdentifier, sortBy, sortOrder)
Arguments¶
domainIdentifier[required] The identifier of the Amazon DataZone domain in which you want to list project memberships.
maxResultsThe maximum number of memberships to return in a single call to
list_project_memberships. When the number of memberships to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_project_membershipsto list the next set of memberships.nextTokenWhen the number of memberships is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of memberships, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_project_membershipsto list the next set of memberships.projectIdentifier[required] The identifier of the project whose memberships you want to list.
sortByThe method by which you want to sort the project memberships.
sortOrderThe sort order of the project memberships.
Value¶
A list with the following syntax:
list(
members = list(
list(
designation = "PROJECT_OWNER"|"PROJECT_CONTRIBUTOR",
memberDetails = list(
group = list(
groupId = "string"
),
user = list(
userId = "string"
)
)
)
),
nextToken = "string"
)