Interface CfnAppInstanceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-20T12:39:59.904Z")
@Stability(Stable)
public interface CfnAppInstanceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAppInstancePropsMixin.
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.chime.*;
CfnAppInstanceMixinProps cfnAppInstanceMixinProps = CfnAppInstanceMixinProps.builder()
.metadata("metadata")
.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 forCfnAppInstanceMixinPropsstatic final classAn implementation forCfnAppInstanceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetadata
The metadata of the AppInstance.Limited to a 1KB string in UTF-8.
- See Also:
-
getName
The name of the AppInstance.- See Also:
-
getTags
Tags assigned to the AppInstance.- See Also:
-
builder
- Returns:
- a
CfnAppInstanceMixinProps.BuilderofCfnAppInstanceMixinProps
-