Interface CfnLayout.LayoutSectionsProperty

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

@Stability(Stable) public static interface CfnLayout.LayoutSectionsProperty extends software.amazon.jsii.JsiiSerializable
Ordered list containing different kinds of sections that can be added.

A LayoutSections object can only contain one 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.cases.*;
 LayoutSectionsProperty layoutSectionsProperty = LayoutSectionsProperty.builder()
         .sections(List.of(SectionProperty.builder()
                 .fieldGroup(FieldGroupProperty.builder()
                         .fields(List.of(FieldItemProperty.builder()
                                 .id("id")
                                 .build()))
                         // the properties below are optional
                         .name("name")
                         .build())
                 .build()))
         .build();
 

See Also: