interface FreeFormSectionLayoutConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FreeFormSectionLayoutConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FreeFormSectionLayoutConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FreeFormSectionLayoutConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FreeFormSectionLayoutConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FreeFormSectionLayoutConfigurationProperty |
The free-form layout configuration of a section.
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 freeFormSectionLayoutConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.FreeFormSectionLayoutConfigurationProperty = {
elements: [{
backgroundStyle: {
color: 'color',
visibility: 'visibility',
},
borderRadius: 'borderRadius',
borderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
elementId: 'elementId',
elementType: 'elementType',
height: 'height',
loadingAnimation: {
visibility: 'visibility',
},
padding: 'padding',
renderingRules: [{
configurationOverrides: {
visibility: 'visibility',
},
expression: 'expression',
}],
selectedBorderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
visibility: 'visibility',
width: 'width',
xAxisLocation: 'xAxisLocation',
yAxisLocation: 'yAxisLocation',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| elements? | IResolvable | (IResolvable | Free)[] | The elements that are included in the free-form layout. |
elements?
Type:
IResolvable | (IResolvable | Free)[]
(optional)
The elements that are included in the free-form layout.

.NET
Go
Java
Python
TypeScript