Interface CfnLayoutMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayoutMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.791Z")
@Stability(Stable)
public interface CfnLayoutMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLayoutPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cases.*;
CfnLayoutMixinProps cfnLayoutMixinProps = CfnLayoutMixinProps.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()))
.name("name")
.build())
.build()))
.build())
.topPanel(LayoutSectionsProperty.builder()
.sections(List.of(SectionProperty.builder()
.fieldGroup(FieldGroupProperty.builder()
.fields(List.of(FieldItemProperty.builder()
.id("id")
.build()))
.name("name")
.build())
.build()))
.build())
.build())
.build())
.domainId("domainId")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayoutMixinPropsstatic final classAn implementation forCfnLayoutMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLayoutMixinProps.Builderbuilder()default ObjectObject to store union of different versions of layout content.default StringThe unique identifier of the Cases domain.default StringgetName()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
IResolvableorCfnLayoutPropsMixin.LayoutContentProperty- See Also:
-
getDomainId
The unique identifier of the Cases domain.- See Also:
-
getName
The name of the layout.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnLayoutMixinProps.BuilderofCfnLayoutMixinProps
-