Enabling executive summaries in embedded dashboards
Applies to: Enterprise Edition |
Intended audience: Amazon Quick Suite developers |
You can enable executive summaries in your embedded dashboards. When enabled, registered users can generate executive summaries that provide a summary of all insights that Amazon Quick Sight has generated for the dashboard. Executive summaries make it easier for readers to find key insights and information about a dashboard. For more information about how users generate an executive summary of a dashboard, see Generate an executive summary of an Amazon Quick Sight dashboard.
Note
Executive summaries are only available in embedded dashboards for registered users, and cannot be enabled in embedded dashboards for anonymous or unregistered users.
To enable executive summaries in embedded dashboards for registered users
-
Follow the steps in Embedding Amazon Quick Sight dashboards for registered users to embed a dashboard with the following changes:
-
When generating the URL in Step 2, set
Enabled: true
in theExecutiveSummary
parameter in the GenerateEmbedUrlForRegisteredUser or GenerateEmbedUrlForRegisteredUserWithIdentity as shown in the following example:ExperienceConfiguration: { Dashboard: { InitialDashboardId:
dashboard_id
, FeatureConfigurations: { AmazonQInQuickSight: { ExecutiveSummary: { Enabled: true } } } } } } -
When embedding the dashboard URL with the Amazon Quick Sight Embedding SDK in Step 3, set
executiveSummary: true
incontentOptions
, as shown in the following example:const contentOptions = { toolbarOptions: { executiveSummary: true } };
-