Interface CfnAppInstanceBotMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceBotMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.129.0 (build eaca441)",
date="2026-05-13T16:55:22.541Z")
@Stability(Stable)
public interface CfnAppInstanceBotMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAppInstanceBotPropsMixin.
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.*;
CfnAppInstanceBotMixinProps cfnAppInstanceBotMixinProps = CfnAppInstanceBotMixinProps.builder()
.appInstanceArn("appInstanceArn")
.configuration(ConfigurationProperty.builder()
.lex(LexConfigurationProperty.builder()
.invokedBy(InvokedByProperty.builder()
.standardMessages("standardMessages")
.targetedMessages("targetedMessages")
.build())
.lexBotAliasArn("lexBotAliasArn")
.localeId("localeId")
.respondsTo("respondsTo")
.welcomeIntent("welcomeIntent")
.build())
.build())
.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 forCfnAppInstanceBotMixinPropsstatic final classAn implementation forCfnAppInstanceBotMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the AppInstance.default ObjectA structure that contains configuration data.default StringThe metadata of the AppInstanceBot.default StringgetName()The name of the AppInstanceBot.getTags()The tags assigned to the AppInstanceBot.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppInstanceArn
The ARN of the AppInstance.- See Also:
-
getConfiguration
A structure that contains configuration data.Returns union: either
IResolvableorCfnAppInstanceBotPropsMixin.ConfigurationProperty- See Also:
-
getMetadata
The metadata of the AppInstanceBot.- See Also:
-
getName
The name of the AppInstanceBot.- See Also:
-
getTags
The tags assigned to the AppInstanceBot.- See Also:
-
builder
-