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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.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.Returns union: either
IResolvableorCfnDashboard.SpacingProperty- 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 CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty.Builder builder()
-