Interface CfnTemplate.GridLayoutElementProperty

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

@Stability(Stable) public static interface CfnTemplate.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: