Interface CfnLayout.SectionProperty

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

@Stability(Stable) public static interface CfnLayout.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.services.cases.*;
 SectionProperty sectionProperty = SectionProperty.builder()
         .fieldGroup(FieldGroupProperty.builder()
                 .fields(List.of(FieldItemProperty.builder()
                         .id("id")
                         .build()))
                 // the properties below are optional
                 .name("name")
                 .build())
         .build();
 

See Also: