Interface CfnTemplatePropsMixin.SheetControlLayoutProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.SheetControlLayoutProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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.cfnpropertymixins.services.quicksight.*;
SheetControlLayoutProperty sheetControlLayoutProperty = SheetControlLayoutProperty.builder()
.configuration(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.SheetControlLayoutPropertystatic final classAn implementation forCfnTemplatePropsMixin.SheetControlLayoutProperty -
Method Summary
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
IResolvableorCfnTemplatePropsMixin.SheetControlLayoutConfigurationProperty- See Also:
-
builder
-