├── .gitignore ├── README.md ├── amplify ├── .config │ └── project-config.json ├── backend │ ├── api │ │ └── quicksight │ │ │ ├── api-params.json │ │ │ ├── parameters.json │ │ │ └── quicksight-cloudformation-template.json │ ├── auth │ │ └── amplifyquicksightdasb5bba591 │ │ │ ├── amplifyquicksightdasb5bba591-cloudformation-template.yml │ │ │ └── parameters.json │ ├── backend-config.json │ ├── function │ │ └── getQuickSightDashboardEmbedURL │ │ │ ├── amplify.state │ │ │ ├── function-parameters.json │ │ │ ├── getQuickSightDashboardEmbedURL-cloudformation-template.json │ │ │ ├── parameters.json │ │ │ └── src │ │ │ ├── app.js │ │ │ ├── event.json │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── hosting │ │ └── S3AndCloudFront │ │ │ ├── parameters.json │ │ │ └── template.json │ └── tags.json ├── cli.json └── team-provider-info.json ├── images ├── cloud9-https.png ├── cloudfront.png ├── diagram.png ├── quicksight-dashboard.png ├── quicksight-not-authorized.png └── react-start.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Embed.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/README.md -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/api/quicksight/api-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/api/quicksight/api-params.json -------------------------------------------------------------------------------- /amplify/backend/api/quicksight/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/api/quicksight/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/quicksight/quicksight-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/api/quicksight/quicksight-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/auth/amplifyquicksightdasb5bba591/amplifyquicksightdasb5bba591-cloudformation-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/auth/amplifyquicksightdasb5bba591/amplifyquicksightdasb5bba591-cloudformation-template.yml -------------------------------------------------------------------------------- /amplify/backend/auth/amplifyquicksightdasb5bba591/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/auth/amplifyquicksightdasb5bba591/parameters.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/amplify.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/amplify.state -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/function-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "lambdaLayers": [] 3 | } -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/getQuickSightDashboardEmbedURL-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/getQuickSightDashboardEmbedURL-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/src/app.js -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/src/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/src/event.json -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/src/index.js -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/src/package-lock.json -------------------------------------------------------------------------------- /amplify/backend/function/getQuickSightDashboardEmbedURL/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/function/getQuickSightDashboardEmbedURL/src/package.json -------------------------------------------------------------------------------- /amplify/backend/hosting/S3AndCloudFront/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/hosting/S3AndCloudFront/parameters.json -------------------------------------------------------------------------------- /amplify/backend/hosting/S3AndCloudFront/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/hosting/S3AndCloudFront/template.json -------------------------------------------------------------------------------- /amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/backend/tags.json -------------------------------------------------------------------------------- /amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/cli.json -------------------------------------------------------------------------------- /amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/amplify/team-provider-info.json -------------------------------------------------------------------------------- /images/cloud9-https.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/cloud9-https.png -------------------------------------------------------------------------------- /images/cloudfront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/cloudfront.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/diagram.png -------------------------------------------------------------------------------- /images/quicksight-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/quicksight-dashboard.png -------------------------------------------------------------------------------- /images/quicksight-not-authorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/quicksight-not-authorized.png -------------------------------------------------------------------------------- /images/react-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/images/react-start.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/Embed.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurbac/amplify-quicksight-dashboard-embedded/HEAD/src/setupTests.js --------------------------------------------------------------------------------