Interface CfnLayout.SectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayout.SectionProperty.Jsii$Proxy
- Enclosing class:
CfnLayout
@Stability(Stable)
public static interface CfnLayout.SectionProperty
extends software.amazon.jsii.JsiiSerializable
This represents a sections within a panel or tab of the page layout.
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.*;
SectionProperty sectionProperty = SectionProperty.builder()
.fieldGroup(FieldGroupProperty.builder()
.fields(List.of(FieldItemProperty.builder()
.id("id")
.build()))
// the properties below are optional
.name("name")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayout.SectionPropertystatic final classAn implementation forCfnLayout.SectionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Consists of a group of fields and associated properties.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldGroup
Consists of a group of fields and associated properties.Returns union: either
IResolvableorCfnLayout.FieldGroupProperty- See Also:
-
builder
- Returns:
- a
CfnLayout.SectionProperty.BuilderofCfnLayout.SectionProperty
-