Listing datasets associated with a datasource

I want to list all the datasets associated with a datasource. What is the process to do that?

Hello Prtrisha,

First of al Welcome to the QuickSight Community.
To list all datasets associated with a datasource in Amazon QuickSight, you’ll need to use the API or CLI as there isn’t a standalone page in the QuickSight interface that shows this information. See link
You can use the AWS CLI command “list-data-sets” to retrieve information about all datasets.
reference link here

When using the API in your script, you can loop through DatasetArns to list all datasets present in an analysis or dashboard. Refer old post here

For example, you can use the describe-analysis API call with your AWS account ID and analysis ID to get this information.
If you need to find what datasets are being used in analyses or dashboards, you can use DescribeAnalysis or DescribeDashboard API calls, which will show “DataSetArns” in the response.
Refer old post here
This allows you to see which datasets are connected to specific analyses or dashboards.
Refer old post here
Refer old post here

Note that access to datasets depends on whether the dataset owner has shared them with you, as you may not have the right to see all datasets or data sources without proper permissions.
Refer old post here

Hope this helps.
Cheers,
Deep