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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayout.FieldGroupPropertystatic final classAn implementation forCfnLayout.FieldGroupProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
Represents an ordered list containing field related information.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLayout.FieldItemProperty>- See Also:
-
getName
Name of the field group.- See Also:
-
builder
-