Interface CfnAppInstanceBotPropsMixin.LexConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceBotPropsMixin.LexConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAppInstanceBotPropsMixin
@Stability(Stable)
public static interface CfnAppInstanceBotPropsMixin.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.cfnpropertymixins.services.chime.*;
LexConfigurationProperty lexConfigurationProperty = LexConfigurationProperty.builder()
.invokedBy(InvokedByProperty.builder()
.standardMessages("standardMessages")
.targetedMessages("targetedMessages")
.build())
.lexBotAliasArn("lexBotAliasArn")
.localeId("localeId")
.respondsTo("respondsTo")
.welcomeIntent("welcomeIntent")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppInstanceBotPropsMixin.LexConfigurationPropertystatic final classAn implementation forCfnAppInstanceBotPropsMixin.LexConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies the type of message that triggers a bot.default StringThe ARN of the Amazon Lex V2 bot's alias.default StringIdentifies 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
-
getInvokedBy
Specifies the type of message that triggers a bot.Returns union: either
IResolvableorCfnAppInstanceBotPropsMixin.InvokedByProperty- See Also:
-
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:
-
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
-