interface GridLayoutElementProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.GridLayoutElementProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.GridLayoutElementProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.GridLayoutElementProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnTemplate » 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 * as quicksight from '@aws-cdk/aws-quicksight';
const gridLayoutElementProperty: quicksight.CfnTemplate.GridLayoutElementProperty = {
  columnSpan: 123,
  elementId: 'elementId',
  elementType: 'elementType',
  rowSpan: 123,
  // the properties below are optional
  columnIndex: 123,
  rowIndex: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| 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 height of a grid element expressed as a number of grid rows. | 
| column | number | The column index for the upper left corner of an element. | 
| row | number | The row index for the upper left corner of an element. | 
columnSpan
Type:
number
The width of a grid element expressed as a number of grid columns.
elementId
Type:
string
A unique identifier for an element within a grid layout.
elementType
Type:
string
The type of element.
rowSpan
Type:
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.
rowIndex?
Type:
number
(optional)
The row index for the upper left corner of an element.

 .NET
 Java
 Python
 TypeScript