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

LayoutConfiguration

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

The configuration that determines what the type of layout will be used on a sheet.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

interface LayoutConfiguration {
FreeFormLayout?: FreeFormLayoutConfiguration | null;
GridLayout?: GridLayoutConfiguration | null;
SectionBasedLayout?: SectionBasedLayoutConfiguration | null;
}

§Properties

§
FreeFormLayout?: FreeFormLayoutConfiguration | null
[src]

A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.

§
GridLayout?: GridLayoutConfiguration | null
[src]

A type of layout that can be used on a sheet. In a grid layout, visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size. A grid layout can be configured to behave in one of two ways when the viewport is resized: FIXED or RESPONSIVE.

§
SectionBasedLayout?: SectionBasedLayoutConfiguration | null
[src]

A section based layout organizes visuals into multiple sections and has customized header, footer and page break.