Interface CfnLayout.BasicLayoutProperty

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

@Stability(Stable) public static interface CfnLayout.BasicLayoutProperty extends software.amazon.jsii.JsiiSerializable
Content specific to BasicLayout type.

It configures fields in the top panel and More Info tab of agent application.

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.*;
 BasicLayoutProperty basicLayoutProperty = 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();
 

See Also: