Interface CfnLayout.LayoutSectionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayout.LayoutSectionsProperty.Jsii$Proxy
- Enclosing class:
CfnLayout
@Stability(Stable)
public static interface CfnLayout.LayoutSectionsProperty
extends software.amazon.jsii.JsiiSerializable
Ordered list containing different kinds of sections that can be added.
A LayoutSections object can only contain one section.
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.*;
LayoutSectionsProperty layoutSectionsProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayout.LayoutSectionsPropertystatic final classAn implementation forCfnLayout.LayoutSectionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSections
Ordered list containing different kinds of sections that can be added.A LayoutSections object can only contain one section.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLayout.SectionProperty>- See Also:
-
builder
-