Skip to content

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.

const dashboard = yield* Dashboard("sales-overview", {
name: "Sales Overview",
sourceEntity: {
SourceTemplate: {
Arn: templateArn,
DataSetReferences: [
{
DataSetPlaceholder: "sales",
DataSetArn: dataset.arn,
},
],
},
},
});