Rename dashboard

Is it possible to rename a dashboard?

From what I can see, you need to go back to the analysis, share it again as a dashboard and choose to replace the existing dashboard and select rename. It would be great if you could just rename the dashboard directly like you can with an analysis by clicking into the title when you open it up.

Am I missing something or is this the only way to rename a dashboard?

Hi,

This is the only way you are thinking :slight_smile:

Regards
Naveed Ali

Hi @bernard-davis, you are correct that is the only way to rename a dashboard. I will flag this post as a feature request.

Is there a way to rename dashboard using CLI commands?

Hi @WLS-P
Is there a way that we can rename via api?
aws quicksight update-dashboard --aws-account-id xxxxxxxx --dashboard-id 207e611b-f3ef-4e3c-88a3-8d5a55cf1315 --name dashboardABC --source-entity file://C:\Users\username\Documents\source-entity.json
Getting the success message. But the renaming doesnot work

@geethika You would need to run the update-dashboard-published-version command post the update-dashboard command.

doc update-dashboard-published-version — AWS CLI 2.13.36 Command Reference

This repository provides a set of developer tools built with a PHP Symfony stack to help manage AWS Quick Sight assets. It includes useful commands to:

  • Rename dashboards
  • Fix a common Quick Sight issue where deleted dataset identifiers prevent dashboards from being updated or created from a definition

Example commands:

php bin/console dashboard:remove-broken-datasets [dashboardId]
php bin/console dashboard:rename [dashboardId] [newName]

You can check out the full set of features and documentation here:
quicksight-asset-manager GitHub Repository