interface HeaderFooterSectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.HeaderFooterSectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_HeaderFooterSectionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.HeaderFooterSectionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.HeaderFooterSectionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const headerFooterSectionConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.HeaderFooterSectionConfigurationProperty = {
layout: {
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',
}],
},
},
sectionId: 'sectionId',
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
(optional)
The layout configuration of the header or footer section.
sectionId?
Type:
string
(optional)
The unique identifier of the header or footer section.
style?
Type:
IResolvable | Section
(optional)
The style options of a header or footer section.

.NET
Go
Java
Python
TypeScript