Interface CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAnalysis.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.- See Also:
-
getPaperOrientation
The paper orientation that is used to define canvas dimensions. Choose one of the following options:.- PORTRAIT
- LANDSCAPE
- See Also:
-
getPaperSize
The paper size that is used to define canvas dimensions.- See Also:
-
builder
@Stability(Stable) static CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Builder builder()
-