List Permission Groups By User
finspacedata_list_permission_groups_by_user | R Documentation |
Lists all the permission groups that are associated with a specific user¶
Description¶
Lists all the permission groups that are associated with a specific user.
Usage¶
finspacedata_list_permission_groups_by_user(userId, nextToken,
maxResults)
Arguments¶
userId |
[required] The unique identifier for the user. |
nextToken |
A token that indicates where a results page should begin. |
maxResults |
[required] The maximum number of results per page. |
Value¶
A list with the following syntax:
list(
permissionGroups = list(
list(
permissionGroupId = "string",
name = "string",
membershipStatus = "ADDITION_IN_PROGRESS"|"ADDITION_SUCCESS"|"REMOVAL_IN_PROGRESS"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_permission_groups_by_user(
userId = "string",
nextToken = "string",
maxResults = 123
)