interface LexConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceBot.LexConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceBot_LexConfigurationProperty |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceBot.LexConfigurationProperty |
Python | aws_cdk.aws_chime.CfnAppInstanceBot.LexConfigurationProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceBot » LexConfigurationProperty |
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 { aws_chime as chime } from 'aws-cdk-lib';
const lexConfigurationProperty: chime.CfnAppInstanceBot.LexConfigurationProperty = {
lexBotAliasArn: 'lexBotAliasArn',
localeId: 'localeId',
// the properties below are optional
invokedBy: {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
},
respondsTo: 'respondsTo',
welcomeIntent: 'welcomeIntent',
};
Properties
| Name | Type | Description |
|---|---|---|
| lex | string | The ARN of the Amazon Lex V2 bot's alias. |
| locale | string | Identifies the Amazon Lex V2 bot's language and locale. |
| invoked | IResolvable | Invoked | Specifies the type of message that triggers a bot. |
| responds | string | Determines whether the Amazon Lex V2 bot responds to all standard messages. |
| welcome | string | The name of the welcome intent configured in the Amazon Lex V2 bot. |
lexBotAliasArn
Type:
string
The ARN of the Amazon Lex V2 bot's alias.
localeId
Type:
string
Identifies the Amazon Lex V2 bot's language and locale.
invokedBy?
Type:
IResolvable | Invoked
(optional)
Specifies the type of message that triggers a bot.
respondsTo?
Type:
string
(optional)
Determines whether the Amazon Lex V2 bot responds to all standard messages.
Control messages are not supported.
welcomeIntent?
Type:
string
(optional)
The name of the welcome intent configured in the Amazon Lex V2 bot.

.NET
Go
Java
Python
TypeScript