interface SectionBasedLayoutPaperCanvasSizeOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.SectionBasedLayoutPaperCanvasSizeOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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/cfn-property-mixins';
const sectionBasedLayoutPaperCanvasSizeOptionsProperty: quicksight.CfnTemplatePropsMixin.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