List Groups
| quicksight_list_groups | R Documentation |
Lists all user groups in Amazon Quick Sight¶
Description¶
Lists all user groups in Amazon Quick Sight.
Usage¶
quicksight_list_groups(AwsAccountId, NextToken, MaxResults, Namespace)
Arguments¶
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 Quick Sight account. |
NextToken |
A pagination token that can be used in a subsequent request. |
MaxResults |
The maximum number of results to return. |
Namespace |
[required] The namespace that you want a list of groups from. |
Value¶
A list with the following syntax:
list(
GroupList = list(
list(
Arn = "string",
GroupName = "string",
Description = "string",
PrincipalId = "string"
)
),
NextToken = "string",
RequestId = "string",
Status = 123
)
Request syntax¶
svc$list_groups(
AwsAccountId = "string",
NextToken = "string",
MaxResults = 123,
Namespace = "string"
)