amazon-quicksight

Issue with quicksight data set unable to import data from data source and also ingestion problem dataset is created using createDataSet api

一世执手 提交于 2020-07-10 08:31:04
问题 ArrayList<ResourcePermission> permissions=new ArrayList<>(); ArrayList<String> action= new ArrayList<>(); action.add("quicksight:UpdateDataSourcePermissions"); action.add("quicksight:DescribeDataSource"); action.add("quicksight:DescribeDataSourcePermissions"); action.add("quicksight:PassDataSource"); action.add("quicksight:UpdateDataSource"); action.add("quicksight:DeleteDataSource"); permissions.add(new ResourcePermission().withPrincipal(PrincipalArn).withActions(action)); return(getClient()

How to make a copy of a QuickSight analysis? [closed]

女生的网名这么多〃 提交于 2020-05-15 02:50:26
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 11 months ago . This must be a silly question. I know how to do a "save as" for a dashboard (don't really need that, but any way). But now I have a analysis with a lot of settings (parameters & filters) and want to reuse my work in a new analyses. But how do I make a copy, save as, or similar ? 回答1:

Copy AWS QuickSight analysis to another account

余生颓废 提交于 2020-04-12 22:11:20
问题 We have a lot of AWS quicksight reports in one account, which needs to be migrated to another account. Within the same account, we can use the 'save-as' feature of the dashboard to create a copy of the report, but is there any way to export the analysis from one account and import into another account? At present, it appears only we way is to recreate all the reports again from scratch in the new account, but anyone has any other options? 回答1: You can do this programmatically through the API:

How to Get Embed URLs for AWS Quicksight Dashboards using Java SDK

佐手、 提交于 2020-01-22 02:50:27
问题 I think I understand all the steps necessary to get the embed URL for an AWS Quicksight dashboard, and I have been able to get a valid URL via the AWS CLI as described in the AWS docs. However, I can't seem to get it to work via the AWS Java SDK (specifically v2). There doesn't seem to be a good example anywhere. Does anyone know of a good working example using Java (or Groovy) preferably using Spring Boot (or Grails 3 or 4)? 回答1: I finally figured it out. Here's a working Groovy/Grails

How to select today's date as default date in QuickSight Controls? [closed]

橙三吉。 提交于 2019-12-23 12:57:44
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 months ago . In below dashboard, I want to set date control to default as today's date. So that whenever the page load the default filter gets applied for today's date. I am using this parameter in my filters. 回答1: ran into the same issue myself. This walks you through it: https://docs.aws.amazon.com/quicksight/latest/user

How to make MSCK REPAIR TABLE execute automatically in AWS Athena

拈花ヽ惹草 提交于 2019-12-18 02:16:10
问题 I have a spark batch job which is executed hourly. Each run generates and stores new data in S3 with the directory naming pattern DATA/YEAR=?/MONTH=?/DATE=?/datafile . After uploading the data to S3 , I want to investigate them using Athena . More, I would like to visualize them in QuickSight by connecting to Athena as a data source. The problem is that, after each run of my Spark batch, the newly generated data stored in S3 will not be discovered by Athena, unless I manually run the query