interface GridLayoutConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.GridLayoutConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_GridLayoutConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.GridLayoutConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.GridLayoutConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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.CfnDashboardPropsMixin.GridLayoutConfigurationProperty = {
canvasSizeOptions: {
screenCanvasSizeOptions: {
optimizedViewPortWidth: 'optimizedViewPortWidth',
resizeOption: 'resizeOption',
},
},
elements: [{
backgroundStyle: {
color: 'color',
visibility: 'visibility',
},
borderRadius: 'borderRadius',
borderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
columnIndex: 123,
columnSpan: 123,
elementId: 'elementId',
elementType: 'elementType',
loadingAnimation: {
visibility: 'visibility',
},
padding: 'padding',
rowIndex: 123,
rowSpan: 123,
selectedBorderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
}],
};
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