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

.NET
Go
Java
Python
TypeScript