Interface CfnAnalysis.SectionStyleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.SectionStyleProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.SectionStylePropertystatic final classAn implementation forCfnAnalysis.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.
- See Also:
-
getPadding
The spacing between section content and its top, bottom, left, and right edges.There is no padding by default.
Returns union: either
IResolvableorCfnAnalysis.SpacingProperty- See Also:
-
builder
-