Move Visualizations between analysis

Hi Team, Is it possible to move Visualizations between analysis without recreating them? I have built a complex visualizations in a test analysis and now I would like to move them into into the production analysis without recreating them.
Do we have an option to download the file from browser and upload the file to other analysis?

1 Like

There is no way to do that in the AWS quicksight console.

You might look to do it via APIs.

1 Like

Hello @Bhawneet_Singh - As @Max mentioned, there are specifically 2 API methods that could help you - describe_analysis_definition and create_analysis. describe_analysis_definition would allow you to save the specification in a JSON format and then you can use that as an input to create_analysis. Since I have been using a bit of boto3 (Python SDK), sharing the links of those 2 methods for your reference.

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/describe_analysis_definition.html

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/create_analysis.html

The “Asset as Bundle” feature is under development as communicated by Quicksight Team earlier. We all are in fact looking forward to that. Hope this helps!

2 Likes

Do we have demo video of this that I can refer? Thanks for your time @sagmukhe and @Max