interface GridLayoutElementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.GridLayoutElementProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_GridLayoutElementProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.GridLayoutElementProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.GridLayoutElementProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » GridLayoutElementProperty |
An element within a grid layout.
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 gridLayoutElementProperty: quicksight_mixins.CfnDashboardPropsMixin.GridLayoutElementProperty = {
columnIndex: 123,
columnSpan: 123,
elementId: 'elementId',
elementType: 'elementType',
rowIndex: 123,
rowSpan: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| column | number | The column index for the upper left corner of an element. |
| column | number | The width of a grid element expressed as a number of grid columns. |
| element | string | A unique identifier for an element within a grid layout. |
| element | string | The type of element. |
| row | number | The row index for the upper left corner of an element. |
| row | number | The height of a grid element expressed as a number of grid rows. |
columnIndex?
Type:
number
(optional)
The column index for the upper left corner of an element.
columnSpan?
Type:
number
(optional)
The width of a grid element expressed as a number of grid columns.
elementId?
Type:
string
(optional)
A unique identifier for an element within a grid layout.
elementType?
Type:
string
(optional)
The type of element.
rowIndex?
Type:
number
(optional)
The row index for the upper left corner of an element.
rowSpan?
Type:
number
(optional)
The height of a grid element expressed as a number of grid rows.

.NET
Go
Java
Python
TypeScript