Interface CfnLayoutProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLayoutProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-09T10:20:13.561Z") @Stability(Stable) public interface CfnLayoutProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLayout.

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.*;
 CfnLayoutProps cfnLayoutProps = CfnLayoutProps.builder()
         .content(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())
         .name("name")
         // the properties below are optional
         .domainId("domainId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: