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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboardPropsMixin.GridLayoutConfigurationPropertystatic final classAn implementation forCfnDashboardPropsMixin.GridLayoutConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnDashboardPropsMixin.GridLayoutCanvasSizeOptionsPropertydefault ObjectThe elements that are included in a grid layout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanvasSizeOptions
Returns union: eitherIResolvableorCfnDashboardPropsMixin.GridLayoutCanvasSizeOptionsProperty- See Also:
-
getElements
The elements that are included in a grid layout.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDashboardPropsMixin.GridLayoutElementProperty>- See Also:
-
builder
-