Interface CfnDashboardPropsMixin.SheetControlLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.SheetControlLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.SheetControlLayoutConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration that determines the elements and canvas size options of sheet control.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.quicksight.mixins.*;
SheetControlLayoutConfigurationProperty sheetControlLayoutConfigurationProperty = SheetControlLayoutConfigurationProperty.builder()
.gridLayout(GridLayoutConfigurationProperty.builder()
.canvasSizeOptions(GridLayoutCanvasSizeOptionsProperty.builder()
.screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder()
.optimizedViewPortWidth("optimizedViewPortWidth")
.resizeOption("resizeOption")
.build())
.build())
.elements(List.of(GridLayoutElementProperty.builder()
.columnIndex(123)
.columnSpan(123)
.elementId("elementId")
.elementType("elementType")
.rowIndex(123)
.rowSpan(123)
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboardPropsMixin.SheetControlLayoutConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGridLayout
The configuration that determines the elements and canvas size options of sheet control.Returns union: either
IResolvableorCfnDashboardPropsMixin.GridLayoutConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDashboardPropsMixin.SheetControlLayoutConfigurationProperty.Builder builder()
-