Interface CfnLayout.FieldGroupProperty

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

@Stability(Stable) public static interface CfnLayout.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.services.cases.*;
 FieldGroupProperty fieldGroupProperty = FieldGroupProperty.builder()
         .fields(List.of(FieldItemProperty.builder()
                 .id("id")
                 .build()))
         // the properties below are optional
         .name("name")
         .build();
 

See Also: