Interface CfnDashboard.SectionStyleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SectionStyleProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.SectionStyleProperty
extends software.amazon.jsii.JsiiSerializable
The options that style a section.
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.*; SectionStyleProperty sectionStyleProperty = SectionStyleProperty.builder() .height("height") .padding(SpacingProperty.builder() .bottom("bottom") .left("left") .right("right") .top("top") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.SectionStyleProperty
static final class
An implementation forCfnDashboard.SectionStyleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeight
The height of a section.Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.
-
getPadding
The spacing between section content and its top, bottom, left, and right edges.There is no padding by default.
-
builder
-