interface HeaderFooterSectionConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.HeaderFooterSectionConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.HeaderFooterSectionConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.HeaderFooterSectionConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnDashboard » HeaderFooterSectionConfigurationProperty | 
The configuration of a header or footer 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 headerFooterSectionConfigurationProperty: quicksight.CfnDashboard.HeaderFooterSectionConfigurationProperty = {
  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
  style: {
    height: 'height',
    padding: {
      bottom: 'bottom',
      left: 'left',
      right: 'right',
      top: 'top',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| layout | IResolvable | Section | The layout configuration of the header or footer section. | 
| section | string | The unique identifier of the header or footer section. | 
| style? | IResolvable | Section | The style options of a header or footer section. | 
layout
Type:
IResolvable | Section
The layout configuration of the header or footer section.
sectionId
Type:
string
The unique identifier of the header or footer section.
style?
Type:
IResolvable | Section
(optional)
The style options of a header or footer section.

 .NET
 Java
 Python
 TypeScript