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