List Group Memberships
quicksight_list_group_memberships | R Documentation |
Lists member users in a group¶
Description¶
Lists member users in a group.
Usage¶
quicksight_list_group_memberships(GroupName, NextToken, MaxResults,
AwsAccountId, Namespace)
Arguments¶
GroupName |
[required] The name of the group that you want to see a membership list of. |
NextToken |
A pagination token that can be used in a subsequent request. |
MaxResults |
The maximum number of results to return from this request. |
AwsAccountId |
[required] The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account. |
Namespace |
[required] The namespace of the group that you want a list of users from. |
Value¶
A list with the following syntax:
list(
GroupMemberList = list(
list(
Arn = "string",
MemberName = "string"
)
),
NextToken = "string",
RequestId = "string",
Status = 123
)
Request syntax¶
svc$list_group_memberships(
GroupName = "string",
NextToken = "string",
MaxResults = 123,
AwsAccountId = "string",
Namespace = "string"
)