Interface CfnAppInstanceBot.LexConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceBot.LexConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAppInstanceBot
@Stability(Stable)
public static interface CfnAppInstanceBot.LexConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for an Amazon Lex V2 bot.
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.*;
LexConfigurationProperty lexConfigurationProperty = LexConfigurationProperty.builder()
.lexBotAliasArn("lexBotAliasArn")
.localeId("localeId")
// the properties below are optional
.invokedBy(InvokedByProperty.builder()
.standardMessages("standardMessages")
.targetedMessages("targetedMessages")
.build())
.respondsTo("respondsTo")
.welcomeIntent("welcomeIntent")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppInstanceBot.LexConfigurationPropertystatic final classAn implementation forCfnAppInstanceBot.LexConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies the type of message that triggers a bot.The ARN of the Amazon Lex V2 bot's alias.Identifies the Amazon Lex V2 bot's language and locale.default StringDetermines whether the Amazon Lex V2 bot responds to all standard messages.default StringThe name of the welcome intent configured in the Amazon Lex V2 bot.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLexBotAliasArn
The ARN of the Amazon Lex V2 bot's alias.- See Also:
-
getLocaleId
Identifies the Amazon Lex V2 bot's language and locale.- See Also:
-
getInvokedBy
Specifies the type of message that triggers a bot.Returns union: either
IResolvableorCfnAppInstanceBot.InvokedByProperty- See Also:
-
getRespondsTo
Determines whether the Amazon Lex V2 bot responds to all standard messages.Control messages are not supported.
- See Also:
-
getWelcomeIntent
The name of the welcome intent configured in the Amazon Lex V2 bot.- See Also:
-
builder
-