Need to disable "Everyone in this account" option for all my dashboards, i have almost 200+ dashboards, i can't open each one by one, it gonna take time. so is there any way to do that, please

There is no way to do this easily via a button.

This might take just as long, but I would look to build out a script that loops through all of your dashboards and updates the permissions to your preferred permissions / users.

In python you would use these two.

First I would list all dashboards,

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#QuickSight.Client.list_dashboards

Then loop through them updating the permissions for each.

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight.html#QuickSight.Client.update_dashboard_permissions

1 Like