awswrangler.quicksight.list_user_groups¶
- awswrangler.quicksight.list_user_groups(user_name: str, namespace: str = 'default', account_id: str | None = None, boto3_session: Session | None = None) list[dict[str, Any]]¶
List the Amazon QuickSight groups that an Amazon QuickSight user is a member of.
- Parameters:
user_name (
str) – The Amazon QuickSight user name that you want to list group memberships for.namespace (
str) – The namespace. Currently, you should set this to default .account_id (
str|None) – If None, the account ID will be inferred from your boto3 session.boto3_session (
Session|None) – The default boto3 session will be used if boto3_session isNone.
- Return type:
list[dict[str,Any]]- Returns:
Groups.
Examples
>>> import awswrangler as wr >>> groups = wr.quicksight.list_user_groups()