Interface CfnLayoutPropsMixin.FieldGroupProperty

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

@Stability(Stable) public static interface CfnLayoutPropsMixin.FieldGroupProperty extends software.amazon.jsii.JsiiSerializable
Object for a group of fields and associated properties.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cases.*;
 FieldGroupProperty fieldGroupProperty = FieldGroupProperty.builder()
         .fields(List.of(FieldItemProperty.builder()
                 .id("id")
                 .build()))
         .name("name")
         .build();
 

See Also: