interface SheetControlLayoutConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SheetControlLayoutConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SheetControlLayoutConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SheetControlLayoutConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SheetControlLayoutConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const sheetControlLayoutConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.SheetControlLayoutConfigurationProperty = {
gridLayout: {
canvasSizeOptions: {
screenCanvasSizeOptions: {
optimizedViewPortWidth: 'optimizedViewPortWidth',
resizeOption: 'resizeOption',
},
},
elements: [{
columnIndex: 123,
columnSpan: 123,
elementId: 'elementId',
elementType: 'elementType',
rowIndex: 123,
rowSpan: 123,
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| grid | IResolvable | Grid | The configuration that determines the elements and canvas size options of sheet control. |
gridLayout?
Type:
IResolvable | Grid
(optional)
The configuration that determines the elements and canvas size options of sheet control.

.NET
Go
Java
Python
TypeScript