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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTheme.SheetStyleProperty
static final class
An implementation forCfnTheme.SheetStyleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTile
The display options for tiles. -
getTileLayout
The layout options for tiles. -
builder
-