interface SectionStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SectionStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SectionStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SectionStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SectionStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SectionStyleProperty |
The options that style 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 sectionStyleProperty: quicksight_mixins.CfnAnalysisPropsMixin.SectionStyleProperty = {
height: 'height',
padding: {
bottom: 'bottom',
left: 'left',
right: 'right',
top: 'top',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| height? | string | The height of a section. |
| padding? | IResolvable | Spacing | The spacing between section content and its top, bottom, left, and right edges. |
height?
Type:
string
(optional)
The height of a section.
Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.
padding?
Type:
IResolvable | Spacing
(optional)
The spacing between section content and its top, bottom, left, and right edges.
There is no padding by default.

.NET
Go
Java
Python
TypeScript