Interface CfnDashboard.SheetControlLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SheetControlLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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.services.quicksight.*;
SheetControlLayoutConfigurationProperty sheetControlLayoutConfigurationProperty = SheetControlLayoutConfigurationProperty.builder()
.gridLayout(GridLayoutConfigurationProperty.builder()
.elements(List.of(GridLayoutElementProperty.builder()
.columnSpan(123)
.elementId("elementId")
.elementType("elementType")
.rowSpan(123)
// the properties below are optional
.columnIndex(123)
.rowIndex(123)
.build()))
// the properties below are optional
.canvasSizeOptions(GridLayoutCanvasSizeOptionsProperty.builder()
.screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder()
.resizeOption("resizeOption")
// the properties below are optional
.optimizedViewPortWidth("optimizedViewPortWidth")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.SheetControlLayoutConfigurationPropertystatic final classAn implementation forCfnDashboard.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
IResolvableorCfnDashboard.GridLayoutConfigurationProperty- See Also:
-
builder
-