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();
 

See Also: