Dashboard
Source:
src/AWS/QuickSight/Dashboard.ts
An Amazon QuickSight dashboard — a published, read-only view built from a template, an analysis, or an inline definition.
QuickSight requires an active account subscription in the region. Without
one, create operations fail with the typed QuickSightSubscriptionRequired
error.
Creating a Dashboard
Section titled “Creating a Dashboard”const dashboard = yield* Dashboard("sales-overview", { name: "Sales Overview", sourceEntity: { SourceTemplate: { Arn: templateArn, DataSetReferences: [ { DataSetPlaceholder: "sales", DataSetArn: dataset.arn, }, ], }, },});