interface BodySectionContentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.BodySectionContentProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_BodySectionContentProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.BodySectionContentProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.BodySectionContentProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » BodySectionContentProperty |
The configuration of content in a body section.
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 bodySectionContentProperty: quicksight.CfnDashboardPropsMixin.BodySectionContentProperty = {
layout: {
freeFormLayout: {
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 |
|---|---|---|
| layout? | IResolvable | Section | The layout configuration of a body section. |
layout?
Type:
IResolvable | Section
(optional)
The layout configuration of a body section.

.NET
Go
Java
Python
TypeScript