Interface CfnTheme.TileLayoutStyleProperty

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

@Stability(Stable) public static interface CfnTheme.TileLayoutStyleProperty extends software.amazon.jsii.JsiiSerializable
The display options for the layout of tiles on a sheet.

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.*;
 TileLayoutStyleProperty tileLayoutStyleProperty = TileLayoutStyleProperty.builder()
         .gutter(GutterStyleProperty.builder()
                 .show(false)
                 .build())
         .margin(MarginStyleProperty.builder()
                 .show(false)
                 .build())
         .build();