Enabling executive summaries in embedded dashboards - Amazon Quick Suite
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

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:

    1. When generating the URL in Step 2, set Enabled: true in the ExecutiveSummary parameter in the GenerateEmbedUrlForRegisteredUser or GenerateEmbedUrlForRegisteredUserWithIdentity as shown in the following example:

      ExperienceConfiguration: { Dashboard: { InitialDashboardId: dashboard_id, FeatureConfigurations: { AmazonQInQuickSight: { ExecutiveSummary: { Enabled: true } } } } } }
    2. When embedding the dashboard URL with the Amazon Quick Sight Embedding SDK in Step 3, set executiveSummary: true in contentOptions, as shown in the following example:

      const contentOptions = { toolbarOptions: { executiveSummary: true } };