Interface CfnDashboard.SheetControlLayoutProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SheetControlLayoutProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.SheetControlLayoutProperty
extends software.amazon.jsii.JsiiSerializable
A grid layout to define the placement 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.*;
SheetControlLayoutProperty sheetControlLayoutProperty = SheetControlLayoutProperty.builder()
.configuration(SheetControlLayoutConfigurationProperty.builder()
.gridLayout(GridLayoutConfigurationProperty.builder()
.elements(List.of(GridLayoutElementProperty.builder()
.columnSpan(123)
.elementId("elementId")
.elementType("elementType")
.rowSpan(123)
// the properties below are optional
.backgroundStyle(GridLayoutElementBackgroundStyleProperty.builder()
.color("color")
.visibility("visibility")
.build())
.borderRadius("borderRadius")
.borderStyle(GridLayoutElementBorderStyleProperty.builder()
.color("color")
.visibility("visibility")
.width("width")
.build())
.columnIndex(123)
.loadingAnimation(LoadingAnimationProperty.builder()
.visibility("visibility")
.build())
.padding("padding")
.rowIndex(123)
.selectedBorderStyle(GridLayoutElementBorderStyleProperty.builder()
.color("color")
.visibility("visibility")
.width("width")
.build())
.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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.SheetControlLayoutPropertystatic final classAn implementation forCfnDashboard.SheetControlLayoutProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration that determines the elements and canvas size options of sheet control.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
The configuration that determines the elements and canvas size options of sheet control.Returns union: either
IResolvableorCfnDashboard.SheetControlLayoutConfigurationProperty- See Also:
-
builder
-