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
         .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();
 

See Also: