interface GridLayoutScreenCanvasSizeOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.GridLayoutScreenCanvasSizeOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_GridLayoutScreenCanvasSizeOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.GridLayoutScreenCanvasSizeOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.GridLayoutScreenCanvasSizeOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » GridLayoutScreenCanvasSizeOptionsProperty |
The options that determine the sizing of the canvas used in a grid 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 gridLayoutScreenCanvasSizeOptionsProperty: quicksight.CfnTemplatePropsMixin.GridLayoutScreenCanvasSizeOptionsProperty = {
optimizedViewPortWidth: 'optimizedViewPortWidth',
resizeOption: 'resizeOption',
};
Properties
| Name | Type | Description |
|---|---|---|
| optimized | string | The width that the view port will be optimized for when the layout renders. |
| resize | string | This value determines the layout behavior when the viewport is resized. |
optimizedViewPortWidth?
Type:
string
(optional)
The width that the view port will be optimized for when the layout renders.
resizeOption?
Type:
string
(optional)
This value determines the layout behavior when the viewport is resized.
FIXED: A fixed width will be used when optimizing the layout. In the Quick Sight console, this option is calledClassic.RESPONSIVE: The width of the canvas will be responsive and optimized to the view port. In the Quick Sight console, this option is calledTiled.

.NET
Go
Java
Python
TypeScript