interface GridLayoutScreenCanvasSizeOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.GridLayoutScreenCanvasSizeOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_GridLayoutScreenCanvasSizeOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.GridLayoutScreenCanvasSizeOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.GridLayoutScreenCanvasSizeOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnTemplate » 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-lib';
const gridLayoutScreenCanvasSizeOptionsProperty: quicksight.CfnTemplate.GridLayoutScreenCanvasSizeOptionsProperty = {
  resizeOption: 'resizeOption',
  // the properties below are optional
  optimizedViewPortWidth: 'optimizedViewPortWidth',
};
Properties
| Name | Type | Description | 
|---|---|---|
| resize | string | This value determines the layout behavior when the viewport is resized. | 
| optimized | string | The width that the view port will be optimized for when the layout renders. | 
resizeOption
Type:
string
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.
optimizedViewPortWidth?
Type:
string
(optional)
The width that the view port will be optimized for when the layout renders.

 .NET
 Go
 Java
 Python
 TypeScript