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, projectIdentifier,
sortBy, sortOrder, nextToken, maxResults)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which you want to list project memberships. |
projectIdentifier |
[required] The identifier of the project whose memberships you want to list. |
sortBy |
The method by which you want to sort the project memberships. |
sortOrder |
The sort order of the project memberships. |
nextToken |
When the number of memberships is greater than the default value
for the |
maxResults |
The maximum number of memberships to return in a single call to
|
Value¶
A list with the following syntax:
list(
members = list(
list(
memberDetails = list(
user = list(
userId = "string"
),
group = list(
groupId = "string"
)
),
designation = "PROJECT_OWNER"|"PROJECT_CONTRIBUTOR"|"PROJECT_CATALOG_VIEWER"|"PROJECT_CATALOG_CONSUMER"|"PROJECT_CATALOG_STEWARD"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_project_memberships(
domainIdentifier = "string",
projectIdentifier = "string",
sortBy = "NAME",
sortOrder = "ASCENDING"|"DESCENDING",
nextToken = "string",
maxResults = 123
)