Interface CfnDashboardPropsMixin.GridLayoutConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboardPropsMixin.GridLayoutConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDashboardPropsMixin

@Stability(Stable) public static interface CfnDashboardPropsMixin.GridLayoutConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for a grid layout. Also called a tiled 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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
 GridLayoutConfigurationProperty gridLayoutConfigurationProperty = GridLayoutConfigurationProperty.builder()
         .canvasSizeOptions(GridLayoutCanvasSizeOptionsProperty.builder()
                 .screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder()
                         .optimizedViewPortWidth("optimizedViewPortWidth")
                         .resizeOption("resizeOption")
                         .build())
                 .build())
         .elements(List.of(GridLayoutElementProperty.builder()
                 .backgroundStyle(GridLayoutElementBackgroundStyleProperty.builder()
                         .color("color")
                         .visibility("visibility")
                         .build())
                 .borderRadius("borderRadius")
                 .borderStyle(GridLayoutElementBorderStyleProperty.builder()
                         .color("color")
                         .visibility("visibility")
                         .width("width")
                         .build())
                 .columnIndex(123)
                 .columnSpan(123)
                 .elementId("elementId")
                 .elementType("elementType")
                 .loadingAnimation(LoadingAnimationProperty.builder()
                         .visibility("visibility")
                         .build())
                 .padding("padding")
                 .rowIndex(123)
                 .rowSpan(123)
                 .selectedBorderStyle(GridLayoutElementBorderStyleProperty.builder()
                         .color("color")
                         .visibility("visibility")
                         .width("width")
                         .build())
                 .build()))
         .build();
 

See Also: