Using the Quick Suite plugin to get insights from structured data - Amazon Q Business

Using the Quick Suite plugin to get insights from structured data

Note

The Quick Suite plugin feature is in preview and is subject to change.

The Quick Suite plugin is a fully integrated plugin that gives an Amazon Q Business application access to insights and external databases through Amazon Quick Suite. Quick Suite is a business intelligence service that provides insights from your structured data, such as databases, data lakes, and data warehouses.

With the Quick Suite plugin for Amazon Q Business, end users can get answers from this structured data directly in an Amazon Q Business application. You don't have to index or reformat this structured data, and you don't need to migrate it to Amazon Q Business.

For example, an end user might ask "What was the revenue per month for my business for 2023?" in their Amazon Q Business chat application. They would get answers based on your unstructured data in Amazon Q Business and, below this response, Quick Suite answers based on structured data.

The response from QuickSight can include a multi-visual answer that includes an AI-generated narrative that summarizes key insights, and supporting visuals and interactive graphs to add context. If these visuals don't exist already, Quick Suite can generate them on the fly based on the user's question and the available data in Quick Suite and external databases.

To enable the plugin, you use Amazon Q Business to link your Amazon Quick Suite account with your application and grant it permission to communicate with Quick Suite. If you use the console, you can create the Quick Suite account in Amazon Q Business. If you already have a Quick Suite account, you can enable the plugin with the console or the CreatePlugin API operation.

After you create resources in Quick Suite (including datasets, topics, and, optionally, dashboards), end users automatically start getting insights based on your structured data.

Important

The Quick Suite plugin is fully integrated with Amazon Q Business, and won't appear in the list of plugins in the web experience. For every user prompt, it automatically queries Quick Suite. For information about pausing the plugin, see Pausing integration with Quick Suite.

Note

If your Admin controls and guardrails settings allow Amazon Q to automatically orchestrate end user chat queries across plugins and data sources, an Quick Suite plugin will only activate if:

  • No other plugin actions (read or write requests requiring additional end user input through forms) are detected, or, in progress.

  • No end user authentication requests are pending.

Pricing

When you set up the integration with Quick Suite, you assign one or more IAM Identity Center groups the Quick Suite Admin Pro role. This role grants users access to all Generative BI capabilities in Amazon Quick Suite. Your Quick Suite administrator is responsible for adding and managing user permissions and configuring your Quick Suite account.

The Quick Suite Admin Pro role incurs additional costs. For more information about pricing, see Amazon Quick Suite pricing. For more information about Pro roles in Amazon Quick Suite, see Get started with Generative BI.

When you link a Quick Suite account and an Amazon Q Business application, the following groups get Pro subscription benefits at no additional cost:

  • Quick Suite Admin Pro groups are added to the Amazon Q Business Pro subscription.

  • Existing Amazon Q Business Pro groups are assigned the Quick Suite Reader Pro role.

Guidelines and requirements

  • You must use IAM Identity Center for authentication for both Quick Suite and Amazon Q Business. If your Amazon Q Business application doesn't use IAM Identity Center, you must create a new one that does. For information about creating an IAM Identity Center integrated application, see Configuring an Amazon Q Business application using AWS IAM Identity Center.

  • Your Amazon Q Business application and Amazon Quick Suite account must be in the same AWS Region.

  • To get answers from QuickSight in your web experience, you must add at least one index to your Amazon Q Business application. To learn how to add an index, see creating an index.

  • If you don't have a Quick Suite account, you can create the account from the Amazon Q Business console when you configure your application to communicate with Quick Suite.

  • You must authorize Amazon Q Business to communicate with Amazon Quick Suite with a service role. For more information, see Service access role.

  • The IAM role for your Amazon Q Business web experience must have quicksight:GenerateEmbedUrlForRegisteredUserWithIdentity permissions. For a policy example, see IAM role for an Amazon Q Business web experience using IAM Identity Center.

Service access role

When you link your Quick Suite account in the Amazon Q Business console, you specify an AWS Identity and Access Management (IAM) role that authorizes Amazon Q Business to communicate with Amazon Quick Suite. In the console, you can choose to create this role with the correct permissions automatically configured. Or you can manually create it.

  • The role's permissions policy must grant quicksight:PredictQAResults for Amazon Quick Suite topics and, if you create them, dashboards. For a permissions policy example, see AWS managed policy: QBusinessQuicksightPluginPolicy.

  • The role's trust policy must grant Amazon Q Business AssumeRole and SetContextpermissions as follows.

    JSON
    { "Version":"2012-10-17", "Statement": [ { "Sid": "QBusinessQuicksightManagedPolicyTrustPolicy", "Effect": "Allow", "Principal": { "Service": "qbusiness.amazonaws.com" }, "Action": [ "sts:AssumeRole", "sts:SetContext" ], "Condition": { "StringEquals": { "aws:SourceAccount": "111122223333" }, "ArnLike": { "aws:SourceArn": "arn:aws:qbusiness:us-east-1:111122223333:application/application-id" } } } ] }