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

.NET
Go
Java
Python
TypeScript