Interface CfnTemplate.SectionBasedLayoutPaperCanvasSizeOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTemplate.SectionBasedLayoutPaperCanvasSizeOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDefines the spacing between the canvas content and the top, bottom, left, and right edges.default StringThe paper orientation that is used to define canvas dimensions.default StringThe 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 CfnTemplate.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Builder builder()
-