Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DashboardVisualId

import type { DashboardVisualId } from "https://aws-api.deno.dev/v0.4/services/quicksight.ts?docs=full";

A structure that contains the following elements:

  • The DashboardId of the dashboard that has the visual that you want to embed.
  • The SheetId of the sheet that has the visual that you want to embed.
  • The VisualId of the visual that you want to embed.

The DashboardId, SheetId, and VisualId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId with a ListDashboards API operation.

interface DashboardVisualId {
DashboardId: string;
SheetId: string;
VisualId: string;
}

§Properties

§
DashboardId: string
[src]

The ID of the dashboard that has the visual that you want to embed. The DashboardId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId with a ListDashboards API operation.

§
SheetId: string
[src]

The ID of the sheet that the has visual that you want to embed. The SheetId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.

§
VisualId: string
[src]

The ID of the visual that you want to embed. The VisualID can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.