aws-cdk-lib.aws_quicksight.CfnDashboard.GridLayoutConfigurationProperty

interface GridLayoutConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.GridLayoutConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_GridLayoutConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.GridLayoutConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.GridLayoutConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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-lib';
const gridLayoutConfigurationProperty: quicksight.CfnDashboard.GridLayoutConfigurationProperty = {
  elements: [{
    columnSpan: 123,
    elementId: 'elementId',
    elementType: 'elementType',
    rowSpan: 123,

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

  // the properties below are optional
  canvasSizeOptions: {
    screenCanvasSizeOptions: {
      resizeOption: 'resizeOption',

      // the properties below are optional
      optimizedViewPortWidth: 'optimizedViewPortWidth',
    },
  },
};

Properties

NameTypeDescription
elementsIResolvable | IResolvable | GridLayoutElementProperty[]The elements that are included in a grid layout.
canvasSizeOptions?IResolvable | GridLayoutCanvasSizeOptionsPropertyCfnDashboard.GridLayoutConfigurationProperty.CanvasSizeOptions.

elements

Type: IResolvable | IResolvable | GridLayoutElementProperty[]

The elements that are included in a grid layout.


canvasSizeOptions?

Type: IResolvable | GridLayoutCanvasSizeOptionsProperty (optional)

CfnDashboard.GridLayoutConfigurationProperty.CanvasSizeOptions.