aws-cdk-lib.aws_quicksight.CfnTemplate.GridLayoutElementProperty

interface GridLayoutElementProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.GridLayoutElementProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_GridLayoutElementProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.GridLayoutElementProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.GridLayoutElementProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const gridLayoutElementProperty: quicksight.CfnTemplate.GridLayoutElementProperty = {
  columnSpan: 123,
  elementId: 'elementId',
  elementType: 'elementType',
  rowSpan: 123,

  // the properties below are optional
  columnIndex: 123,
  rowIndex: 123,
};

Properties

NameTypeDescription
columnSpannumberThe width of a grid element expressed as a number of grid columns.
elementIdstringA unique identifier for an element within a grid layout.
elementTypestringThe type of element.
rowSpannumberThe height of a grid element expressed as a number of grid rows.
columnIndex?numberThe column index for the upper left corner of an element.
rowIndex?numberThe 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.