interface SheetControlLayoutProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.SheetControlLayoutProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_SheetControlLayoutProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.SheetControlLayoutProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.SheetControlLayoutProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » SheetControlLayoutProperty |
A grid layout to define the placement 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 sheetControlLayoutProperty: quicksight.CfnDashboard.SheetControlLayoutProperty = {
configuration: {
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
Name | Type | Description |
---|---|---|
configuration | IResolvable | Sheet | The configuration that determines the elements and canvas size options of sheet control. |
configuration
Type:
IResolvable
|
Sheet
The configuration that determines the elements and canvas size options of sheet control.