Interface CfnLayout.LayoutContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayout.LayoutContentProperty.Jsii$Proxy
- Enclosing class:
CfnLayout
@Stability(Stable)
public static interface CfnLayout.LayoutContentProperty
extends software.amazon.jsii.JsiiSerializable
Object to store union of different versions of layout content.
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.*;
LayoutContentProperty layoutContentProperty = LayoutContentProperty.builder()
.basic(BasicLayoutProperty.builder()
.moreInfo(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())
.topPanel(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())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayout.LayoutContentPropertystatic final classAn implementation forCfnLayout.LayoutContentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBasic
Content specific toBasicLayouttype.It configures fields in the top panel and More Info tab of agent application.
Returns union: either
IResolvableorCfnLayout.BasicLayoutProperty- See Also:
-
builder
-