Interface CfnTemplate.SectionStyleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.SectionStyleProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.SectionStyleProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 SectionStyleProperty sectionStyleProperty = SectionStyleProperty.builder()
         .height("height")
         .padding(SpacingProperty.builder()
                 .bottom("bottom")
                 .left("left")
                 .right("right")
                 .top("top")
                 .build())
         .build();
 

See Also: