Interface CfnAnalysis.GridLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GridLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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.services.quicksight.*; GridLayoutConfigurationProperty gridLayoutConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.GridLayoutConfigurationProperty
static final class
An implementation forCfnAnalysis.GridLayoutConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getElements
The elements that are included in a grid layout.- See Also:
-
getCanvasSizeOptions
- See Also:
-
builder
-