interface SheetControlLayoutProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.SheetControlLayoutProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_SheetControlLayoutProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.SheetControlLayoutProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.SheetControlLayoutProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const sheetControlLayoutProperty: quicksight.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