# QuickSight

{% content-ref url="/pages/ThIqsk5qW6OzVg1CCiAu" %}
[QuickSight Metadata Extracted](/integrations/data-visualization-tools/quicksight-integration/metadata-extracted.md)
{% endcontent-ref %}

## Getting Started with AWS QuickSight

The AWS QuickSight integration will pull metadata from your AWS QuickSight workspace and the associated lineage information from the data sources for QuickSight.

There are two steps to connect AWS Quicksight with Secoda.

1. Create an IAM user that has permission to get QuickSight objects.
2. Connect QuickSight to Secoda.

#### Create an IAM User

Log in to your [AWS console](https://us-east-1.console.aws.amazon.com/console/home?region=us-east-1) and then to the [IAM management console](https://us-east-1.console.aws.amazon.com/iamv2/home?region=us-east-1#/home)

Create a new IAM user by clicking "Add users"

Select "**Access key - Programmatic access"** under the "Select AWS access type" section and click "Next"

In the permissions section, select "Attach existing policies directly" and then click "Create policy".

Select the "JSON" option and paste in the following policy. Make sure to replace \<aws\_region> and \<aws\_account\_id> with the proper values. Then create the policy and return to the previous page for the IAM user creation.

```
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "quicksight:ListAnalyses",
                "quicksight:DescribeAnalysis",
                "quicksight:ListDashboards",
                "quicksight:DescribeDashboard",
                "quicksight:ListDataSets",
                "quicksight:DescribeDataSet",
                "quicksight:DescribeDataSource",
            ],
            "Resource": "*",
            "Effect": "Allow"
        },
    ]
}
```

Refresh the policy list and search for your newly created policy. Select that policy and then create the user.

#### Connect QuickSight to Secoda

Copy the Access Key ID and Secret Access Key that is generated for the user. Return to [Integrations](https://app.secoda.co/integrations) and select the AWS QuickSight integration. Input your AWS Account ID, region, access key ID and secret access key and click "Test Connection". After the connection is established click "Run initial extraction" to begin the process of syncing your Quicksight workspace.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.secoda.co/integrations/data-visualization-tools/quicksight-integration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
