Interface CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options for a paper canvas of a section-based layout.
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.*; SectionBasedLayoutPaperCanvasSizeOptionsProperty sectionBasedLayoutPaperCanvasSizeOptionsProperty = SectionBasedLayoutPaperCanvasSizeOptionsProperty.builder() .paperMargin(SpacingProperty.builder() .bottom("bottom") .left("left") .right("right") .top("top") .build()) .paperOrientation("paperOrientation") .paperSize("paperSize") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Defines the spacing between the canvas content and the top, bottom, left, and right edges.default String
The paper orientation that is used to define canvas dimensions.default String
The paper size that is used to define canvas dimensions.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPaperMargin
Defines the spacing between the canvas content and the top, bottom, left, and right edges. -
getPaperOrientation
The paper orientation that is used to define canvas dimensions. Choose one of the following options:.- PORTRAIT
- LANDSCAPE
-
getPaperSize
The paper size that is used to define canvas dimensions. -
builder
@Stability(Stable) static CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Builder builder()
-