Interface CfnDashboardPropsMixin.GridLayoutElementProperty

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

@Stability(Stable) public static interface CfnDashboardPropsMixin.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.cfnpropertymixins.services.quicksight.*;
 GridLayoutElementProperty gridLayoutElementProperty = GridLayoutElementProperty.builder()
         .backgroundStyle(GridLayoutElementBackgroundStyleProperty.builder()
                 .color("color")
                 .visibility("visibility")
                 .build())
         .borderRadius("borderRadius")
         .borderStyle(GridLayoutElementBorderStyleProperty.builder()
                 .color("color")
                 .visibility("visibility")
                 .width("width")
                 .build())
         .columnIndex(123)
         .columnSpan(123)
         .elementId("elementId")
         .elementType("elementType")
         .loadingAnimation(LoadingAnimationProperty.builder()
                 .visibility("visibility")
                 .build())
         .padding("padding")
         .rowIndex(123)
         .rowSpan(123)
         .selectedBorderStyle(GridLayoutElementBorderStyleProperty.builder()
                 .color("color")
                 .visibility("visibility")
                 .width("width")
                 .build())
         .build();
 

See Also: