Enable PDF Export Button on Quicksight Integration

Hi Team,

I have used the following piece of Java code to embed Quicksight dashboard in my application:

GenerateEmbedUrlForRegisteredUserRequest embedUrlRequest =
GenerateEmbedUrlForRegisteredUserRequest
.builder()
.awsAccountId(quickSightConnector.getAccountId())
.experienceConfiguration(RegisteredUserEmbeddingExperienceConfiguration
.builder()
.dashboard(RegisteredUserDashboardEmbeddingConfiguration
.builder()
.initialDashboardId(dashboardId).build()).build())
.userArn(userDto.getQuickSightUser()).build();

However, I am unable to get the export options toolbar on my embedded page, i.e., I am unable to find the logic to enable EXPORT featureConfigurations and hence export option is not becoming visible on the toolbar.

Can you please help out with the necessary configuration in the above code to setup the Export Options ?

Hi @anil.babu,

Check out the embedding SDK. There’s an option to enable export.

1 Like