interface LexConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnAppInstanceBotPropsMixin.LexConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnAppInstanceBotPropsMixin_LexConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnAppInstanceBotPropsMixin.LexConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceBotPropsMixin.LexConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnAppInstanceBotPropsMixin » 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/cfn-property-mixins';
const lexConfigurationProperty: chime.CfnAppInstanceBotPropsMixin.LexConfigurationProperty = {
invokedBy: {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
},
lexBotAliasArn: 'lexBotAliasArn',
localeId: 'localeId',
respondsTo: 'respondsTo',
welcomeIntent: 'welcomeIntent',
};
Properties
| Name | Type | Description |
|---|---|---|
| invoked | IResolvable | Invoked | Specifies the type of message that triggers a bot. |
| lex | string | The ARN of the Amazon Lex V2 bot's alias. |
| locale | string | Identifies the Amazon Lex V2 bot's language and locale. |
| 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. |
invokedBy?
Type:
IResolvable | Invoked
(optional)
Specifies the type of message that triggers a bot.
lexBotAliasArn?
Type:
string
(optional)
The ARN of the Amazon Lex V2 bot's alias.
localeId?
Type:
string
(optional)
Identifies the Amazon Lex V2 bot's language and locale.
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