Interface CfnDashboard.GridLayoutElementProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.GridLayoutElementProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.GridLayoutElementProperty
extends software.amazon.jsii.JsiiSerializable
An element within a grid layout.
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.*;
GridLayoutElementProperty gridLayoutElementProperty = GridLayoutElementProperty.builder()
.columnSpan(123)
.elementId("elementId")
.elementType("elementType")
.rowSpan(123)
// the properties below are optional
.columnIndex(123)
.rowIndex(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.GridLayoutElementPropertystatic final classAn implementation forCfnDashboard.GridLayoutElementProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe column index for the upper left corner of an element.The width of a grid element expressed as a number of grid columns.A unique identifier for an element within a grid layout.The type of element.default NumberThe row index for the upper left corner of an element.The height of a grid element expressed as a number of grid rows.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnSpan
The width of a grid element expressed as a number of grid columns.- See Also:
-
getElementId
A unique identifier for an element within a grid layout.- See Also:
-
getElementType
The type of element.- See Also:
-
getRowSpan
The height of a grid element expressed as a number of grid rows.- See Also:
-
getColumnIndex
The column index for the upper left corner of an element.- See Also:
-
getRowIndex
The row index for the upper left corner of an element.- See Also:
-
builder
-