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.
Creating an Analysis
Section titled “Creating an Analysis”const analysis = yield* Analysis("explore-sales", { name: "Explore Sales", sourceEntity: { SourceTemplate: { Arn: templateArn, DataSetReferences: [ { DataSetPlaceholder: "sales", DataSetArn: dataset.arn }, ], }, },});