interface BodySectionConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.BodySectionConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.BodySectionConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.BodySectionConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»BodySectionConfigurationProperty | 
The configuration of a body section.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const bodySectionConfigurationProperty: quicksight.CfnDashboard.BodySectionConfigurationProperty = {
  content: {
    layout: {
      freeFormLayout: {
        elements: [{
          elementId: 'elementId',
          elementType: 'elementType',
          height: 'height',
          width: 'width',
          xAxisLocation: 'xAxisLocation',
          yAxisLocation: 'yAxisLocation',
          // the properties below are optional
          backgroundStyle: {
            color: 'color',
            visibility: 'visibility',
          },
          borderStyle: {
            color: 'color',
            visibility: 'visibility',
          },
          loadingAnimation: {
            visibility: 'visibility',
          },
          renderingRules: [{
            configurationOverrides: {
              visibility: 'visibility',
            },
            expression: 'expression',
          }],
          selectedBorderStyle: {
            color: 'color',
            visibility: 'visibility',
          },
          visibility: 'visibility',
        }],
      },
    },
  },
  sectionId: 'sectionId',
  // the properties below are optional
  pageBreakConfiguration: {
    after: {
      status: 'status',
    },
  },
  style: {
    height: 'height',
    padding: {
      bottom: 'bottom',
      left: 'left',
      right: 'right',
      top: 'top',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| content | IResolvable | Body | The configuration of content in a body section. | 
| section | string | The unique identifier of a body section. | 
| page | IResolvable | Section | The configuration of a page break for a section. | 
| style? | IResolvable | Section | The style options of a body section. | 
content
Type:
IResolvable | Body
The configuration of content in a body section.
sectionId
Type:
string
The unique identifier of a body section.
pageBreakConfiguration?
Type:
IResolvable | Section
(optional)
The configuration of a page break for a section.
style?
Type:
IResolvable | Section
(optional)
The style options of a body section.
