Interface CfnLayoutProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayoutProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-09T10:20:13.561Z")
@Stability(Stable)
public interface CfnLayoutProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLayout.
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.*;
CfnLayoutProps cfnLayoutProps = CfnLayoutProps.builder()
.content(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())
.name("name")
// the properties below are optional
.domainId("domainId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayoutPropsstatic final classAn implementation forCfnLayoutProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLayoutProps.Builderbuilder()Object to store union of different versions of layout content.default StringThe unique identifier of the Cases domain.getName()The name of the layout.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
Object to store union of different versions of layout content.Returns union: either
IResolvableorCfnLayout.LayoutContentProperty- See Also:
-
getName
The name of the layout.- See Also:
-
getDomainId
The unique identifier of the Cases domain.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnLayoutProps.BuilderofCfnLayoutProps
-