Interface CfnLayoutPropsMixin.SectionProperty

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

@Stability(Stable) public static interface CfnLayoutPropsMixin.SectionProperty extends software.amazon.jsii.JsiiSerializable
This represents a sections within a panel or tab of the page layout.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cases.*;
 SectionProperty sectionProperty = SectionProperty.builder()
         .fieldGroup(FieldGroupProperty.builder()
                 .fields(List.of(FieldItemProperty.builder()
                         .id("id")
                         .build()))
                 .name("name")
                 .build())
         .build();
 

See Also: