awswrangler.quicksight.list_group_memberships

awswrangler.quicksight.list_group_memberships(group_name: str, namespace: str = 'default', account_id: str | None = None, boto3_session: Session | None = None) list[dict[str, Any]]

List all QuickSight Group memberships.

Parameters:
  • group_name (str) – The name of the group that you want to see a membership list of.

  • 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 is None.

Return type:

list[dict[str, Any]]

Returns:

Group memberships.

Examples

>>> import awswrangler as wr
>>> memberships = wr.quicksight.list_group_memberships()