Interface CfnTheme.SheetStyleProperty

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

@Stability(Stable) public static interface CfnTheme.SheetStyleProperty extends software.amazon.jsii.JsiiSerializable
The theme display options for sheets.

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.*;
 SheetStyleProperty sheetStyleProperty = SheetStyleProperty.builder()
         .tile(TileStyleProperty.builder()
                 .border(BorderStyleProperty.builder()
                         .show(false)
                         .build())
                 .build())
         .tileLayout(TileLayoutStyleProperty.builder()
                 .gutter(GutterStyleProperty.builder()
                         .show(false)
                         .build())
                 .margin(MarginStyleProperty.builder()
                         .show(false)
                         .build())
                 .build())
         .build();
 

See Also: