interface SectionBasedLayoutPaperCanvasSizeOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const sectionBasedLayoutPaperCanvasSizeOptionsProperty: quicksight_mixins.CfnDashboardPropsMixin.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