qs

QuickSight

Analytics & IoTAWS
General

General information about the service.

Description

Amazon QuickSight is a serverless business intelligence service.

Service Namespace

AWS::QuickSight::Dashboard

ARN Pattern

arn:aws:quicksight:{region}:{account}:dashboard/{dashboard-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

qs-

Length

1-2048

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_quicksight_data_source" "main" {
2 data_source_id = "qs-${var.environment}"
3 name = "qs-${var.environment}"
4 aws_account_id = data.aws_caller_identity.current.account_id
5 type = "S3"
6 parameters {
7 s3 { manifest_file_location { bucket = var.bucket key = "manifest.json" } }
8 }
9}
Utilities

Utilities to support app deployment or configuration.