Interface CfnLayout.BasicLayoutProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayout.BasicLayoutProperty.Jsii$Proxy
- Enclosing class:
CfnLayout
@Stability(Stable)
public static interface CfnLayout.BasicLayoutProperty
extends software.amazon.jsii.JsiiSerializable
Content specific to
BasicLayout type.
It configures fields in the top panel and More Info tab of agent application.
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.*;
BasicLayoutProperty basicLayoutProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayout.BasicLayoutPropertystatic final classAn implementation forCfnLayout.BasicLayoutProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMoreInfo
This represents sections in a tab of the page layout.Returns union: either
IResolvableorCfnLayout.LayoutSectionsProperty- See Also:
-
getTopPanel
This represents sections in a panel of the page layout.Returns union: either
IResolvableorCfnLayout.LayoutSectionsProperty- See Also:
-
builder
-