I need to find the owner/author of a particular dashboard. Since I am not the owner, I cannot use the share button method suggested to the others. Looks like the only way to see who owners are without being an owner of the dashboard is the technical way. Can you help explain how this is done?
Thanks
Describe_dashboard_permissions to get the owners: describe-dashboard-permissions — AWS CLI 1.22.101 Command Reference
Sample syntax: aws quicksight describe-dashboard-permissions --dashboard-id <> --aws-account-id <> --region us-east-1
Sample response:
{
“Principal”: “arn:aws:quicksight:us-east-1::user/default/Administrator/deep”,
“Actions”: [
“quicksight:DescribeDashboard”,
“quicksight:ListDashboardVersions”,
“quicksight:UpdateDashboardPermissions”,
“quicksight:QueryDashboard”,
“quicksight:UpdateDashboard”,
“quicksight:DeleteDashboard”,
“quicksight:DescribeDashboardPermissions”,
“quicksight:UpdateDashboardPublishedVersion”
The principal is a user or a group. If you see “quicksight:DeleteDashboard” action in the actions list, then this principal should be the owner.
Furthermore, you can create an admin console by following this post: CloudFormation Templates of the administrative console in Amazon QuickSight
Thanks for this Deep.
However, I do not have the input details like the aws account id or the dashboard id. I cannot seem to find it from the dashboard itself.
How can I proceed?