interface GridLayoutConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnTemplatePropsMixin.GridLayoutConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnTemplatePropsMixin_GridLayoutConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnTemplatePropsMixin.GridLayoutConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnTemplatePropsMixin.GridLayoutConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnTemplatePropsMixin » GridLayoutConfigurationProperty |
The configuration for a grid layout. Also called a tiled layout.
Visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size.
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 gridLayoutConfigurationProperty: quicksight_mixins.CfnTemplatePropsMixin.GridLayoutConfigurationProperty = {
canvasSizeOptions: {
screenCanvasSizeOptions: {
optimizedViewPortWidth: 'optimizedViewPortWidth',
resizeOption: 'resizeOption',
},
},
elements: [{
columnIndex: 123,
columnSpan: 123,
elementId: 'elementId',
elementType: 'elementType',
rowIndex: 123,
rowSpan: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| canvas | IResolvable | Grid | |
| elements? | IResolvable | (IResolvable | Grid)[] | The elements that are included in a grid layout. |
canvasSizeOptions?
Type:
IResolvable | Grid
(optional)
elements?
Type:
IResolvable | (IResolvable | Grid)[]
(optional)
The elements that are included in a grid layout.

.NET
Go
Java
Python
TypeScript