Interface CfnAppInstanceBotProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceBotProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.129.0 (build eaca441)",
date="2026-05-13T16:55:04.692Z")
@Stability(Stable)
public interface CfnAppInstanceBotProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAppInstanceBot.
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.*;
CfnAppInstanceBotProps cfnAppInstanceBotProps = CfnAppInstanceBotProps.builder()
.appInstanceArn("appInstanceArn")
.configuration(ConfigurationProperty.builder()
.lex(LexConfigurationProperty.builder()
.lexBotAliasArn("lexBotAliasArn")
.localeId("localeId")
// the properties below are optional
.invokedBy(InvokedByProperty.builder()
.standardMessages("standardMessages")
.targetedMessages("targetedMessages")
.build())
.respondsTo("respondsTo")
.welcomeIntent("welcomeIntent")
.build())
.build())
// the properties below are optional
.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 forCfnAppInstanceBotPropsstatic final classAn implementation forCfnAppInstanceBotProps -
Method Summary
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
IResolvableorCfnAppInstanceBot.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
- Returns:
- a
CfnAppInstanceBotProps.BuilderofCfnAppInstanceBotProps
-