Interface CfnAnalysis.GridLayoutElementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.GridLayoutElementProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.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();
 
  • Method Details

    • getColumnSpan

      @Stability(Stable) @NotNull Number getColumnSpan()
      The width of a grid element expressed as a number of grid columns.
    • getElementId

      @Stability(Stable) @NotNull String getElementId()
      A unique identifier for an element within a grid layout.
    • getElementType

      @Stability(Stable) @NotNull String getElementType()
      The type of element.
    • getRowSpan

      @Stability(Stable) @NotNull Number getRowSpan()
      The height of a grid element expressed as a number of grid rows.
    • getColumnIndex

      @Stability(Stable) @Nullable default Number getColumnIndex()
      The column index for the upper left corner of an element.
    • getRowIndex

      @Stability(Stable) @Nullable default Number getRowIndex()
      The row index for the upper left corner of an element.
    • builder

      @Stability(Stable) static CfnAnalysis.GridLayoutElementProperty.Builder builder()
      Returns:
      a CfnAnalysis.GridLayoutElementProperty.Builder of CfnAnalysis.GridLayoutElementProperty