1 Answer
- Newest
- Most votes
- Most comments
-1
Yes, you can use "Build visuals with Q" inside Amazon QuickSight Console Embedding, but you need to explicitly enable this generative BI capability in both your backend and frontend code.
For your backend code, you need to modify your `RegisteredUserEmbeddingExperienceConfiguration` to include the generative BI feature configurations. Specifically, you need to enable the GenerativeAuthoring feature:
```java
RegisteredUserEmbeddingExperienceConfiguration experienceConfiguration =
new RegisteredUserEmbeddingExperienceConfiguration()
.withQuickSightConsole(new RegisteredUserQuickSightConsoleEmbeddingConfiguration()
.withInitialPath("/start/favorites")
.withFeatureConfigurations(new RegisteredUserFeatureConfigurations()
.withAmazonQInQuickSight(new AmazonQInQuickSightFeatureConfigurations()
.withGenerativeAuthoring(new GenerativeAuthoringConfiguration()
.withEnabled(true)))));
```
On the frontend side, you need to update your embedding code to include the content options that enable the buildVisual feature:
```javascript
const contentOptions = {
toolbarOptions: {
buildVisual: true
}
};
await context.embedConsole({
url: data.embedUrl,
container: '#qs-console',
height: '900px',
width: '100%',
contentOptions: contentOptions
});
```
Make sure you're using QuickSight Embedding SDK version 2.10 or higher, which you already have (2.10.1). These generative BI capabilities are disabled by default if no configuration is provided, which explains why you're not seeing the "Build visuals with Q" option in your embedded console.
Amazon Q in QuickSight is now generally available in embedded dashboards and console, offering generative BI capabilities that help business analysts and users build insights using natural language.
Sources
Enhance your analytics embedding experience with generative BI capabilities | AWS Business Intelligence Blog
Amazon QuickSight launches Amazon Q in embedded QuickSight - AWS
answered a year ago
Relevant content
- asked 4 years ago
- asked 2 years ago
- asked 2 years ago
- AWS OFFICIALUpdated a year ago
