interface SectionBasedLayoutPaperCanvasSizeOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_SectionBasedLayoutPaperCanvasSizeOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » SectionBasedLayoutPaperCanvasSizeOptionsProperty | 
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const sectionBasedLayoutPaperCanvasSizeOptionsProperty: quicksight.CfnDashboard.SectionBasedLayoutPaperCanvasSizeOptionsProperty = {
  paperMargin: {
    bottom: 'bottom',
    left: 'left',
    right: 'right',
    top: 'top',
  },
  paperOrientation: 'paperOrientation',
  paperSize: 'paperSize',
};
Properties
| Name | Type | Description | 
|---|---|---|
| paper | IResolvable | Spacing | Defines the spacing between the canvas content and the top, bottom, left, and right edges. | 
| paper | string | The paper orientation that is used to define canvas dimensions. Choose one of the following options:. | 
| paper | string | The paper size that is used to define canvas dimensions. | 
paperMargin?
Type:
IResolvable | Spacing
(optional)
Defines the spacing between the canvas content and the top, bottom, left, and right edges.
paperOrientation?
Type:
string
(optional)
The paper orientation that is used to define canvas dimensions. Choose one of the following options:.
- PORTRAIT
 - LANDSCAPE
 
paperSize?
Type:
string
(optional)
The paper size that is used to define canvas dimensions.

 .NET
 Go
 Java
 Python
 TypeScript