Skip to content

Analysis

Source: src/AWS/QuickSight/Analysis.ts

An Amazon QuickSight analysis — an editable workspace built from a template or an inline definition, which can be published as a dashboard.

QuickSight requires an active account subscription in the region. Without one, create operations fail with the typed QuickSightSubscriptionRequired error.

const analysis = yield* Analysis("explore-sales", {
name: "Explore Sales",
sourceEntity: {
SourceTemplate: {
Arn: templateArn,
DataSetReferences: [
{ DataSetPlaceholder: "sales", DataSetArn: dataset.arn },
],
},
},
});