Interface CfnAppInstanceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.129.0 (build eaca441)",
date="2026-05-13T16:55:04.692Z")
@Stability(Stable)
public interface CfnAppInstanceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAppInstance.
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.chime.*;
CfnAppInstanceProps cfnAppInstanceProps = CfnAppInstanceProps.builder()
.name("name")
// the properties below are optional
.metadata("metadata")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppInstancePropsstatic final classAn implementation forCfnAppInstanceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAppInstanceProps.Builderbuilder()default StringThe metadata of the AppInstance.getName()The name of the AppInstance.getTags()Tags assigned to the AppInstance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the AppInstance.- See Also:
-
getMetadata
The metadata of the AppInstance.Limited to a 1KB string in UTF-8.
- See Also:
-
getTags
Tags assigned to the AppInstance.- See Also:
-
builder
- Returns:
- a
CfnAppInstanceProps.BuilderofCfnAppInstanceProps
-