aws-cdk-lib.aws_quicksight.CfnAnalysis.SheetControlLayoutConfigurationProperty

interface SheetControlLayoutConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.SheetControlLayoutConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_SheetControlLayoutConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.SheetControlLayoutConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.SheetControlLayoutConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnAnalysis » SheetControlLayoutConfigurationProperty

The configuration that determines the elements and canvas size options of sheet control.

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 sheetControlLayoutConfigurationProperty: quicksight.CfnAnalysis.SheetControlLayoutConfigurationProperty = {
  gridLayout: {
    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
gridLayout?IResolvable | GridLayoutConfigurationPropertyThe configuration that determines the elements and canvas size options of sheet control.

gridLayout?

Type: IResolvable | GridLayoutConfigurationProperty (optional)

The configuration that determines the elements and canvas size options of sheet control.