Interface CfnLayout.LayoutContentProperty

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

@Stability(Stable) public static interface CfnLayout.LayoutContentProperty extends software.amazon.jsii.JsiiSerializable
Object to store union of different versions of layout content.

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.*;
 LayoutContentProperty layoutContentProperty = LayoutContentProperty.builder()
         .basic(BasicLayoutProperty.builder()
                 .moreInfo(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())
                 .topPanel(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())
                 .build())
         .build();
 

See Also: