today i use api call describe-analysis/dashboard to get all information by i missed very important information like - data-sets that connected to dashboard/ analysis - so i do want to tag dashboard manually
solutions i looking for : dashboard/analysis_name : [all data-set ]
or data-set -[all dashboard/analysis ]
that are connecting right now
for dataset in response[‘Analysis’][‘DataSetArns’]:
DArn= dataset
print(DArn) # printing dataset ARN
datasetid = DArn.split(‘:’)[5].split(‘/’)[1] # Get dataset ID from ARN
print(datasetid ) # print Dataset ID
Old question, but for those needing help with this. Here is an example python script that will pull all QuickSight assets and export to CSV file (including the dataset ids used).