Class CfnAppInstanceBotPropsMixin.LexConfigurationProperty
The configuration for an Amazon Lex V2 bot.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Chime
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAppInstanceBotPropsMixin.LexConfigurationProperty : CfnAppInstanceBotPropsMixin.ILexConfigurationProperty
Syntax (vb)
Public Class CfnAppInstanceBotPropsMixin.LexConfigurationProperty Implements CfnAppInstanceBotPropsMixin.ILexConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Chime;
var lexConfigurationProperty = new LexConfigurationProperty {
InvokedBy = new InvokedByProperty {
StandardMessages = "standardMessages",
TargetedMessages = "targetedMessages"
},
LexBotAliasArn = "lexBotAliasArn",
LocaleId = "localeId",
RespondsTo = "respondsTo",
WelcomeIntent = "welcomeIntent"
};
Synopsis
Constructors
| LexConfigurationProperty() | The configuration for an Amazon Lex V2 bot. |
Properties
| InvokedBy | Specifies the type of message that triggers a bot. |
| LexBotAliasArn | The ARN of the Amazon Lex V2 bot's alias. |
| LocaleId | Identifies the Amazon Lex V2 bot's language and locale. |
| RespondsTo | Determines whether the Amazon Lex V2 bot responds to all standard messages. |
| WelcomeIntent | The name of the welcome intent configured in the Amazon Lex V2 bot. |
Constructors
LexConfigurationProperty()
The configuration for an Amazon Lex V2 bot.
public LexConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Chime;
var lexConfigurationProperty = new LexConfigurationProperty {
InvokedBy = new InvokedByProperty {
StandardMessages = "standardMessages",
TargetedMessages = "targetedMessages"
},
LexBotAliasArn = "lexBotAliasArn",
LocaleId = "localeId",
RespondsTo = "respondsTo",
WelcomeIntent = "welcomeIntent"
};
Properties
InvokedBy
Specifies the type of message that triggers a bot.
public object? InvokedBy { get; set; }
Property Value
Remarks
LexBotAliasArn
The ARN of the Amazon Lex V2 bot's alias.
public string? LexBotAliasArn { get; set; }
Property Value
Remarks
LocaleId
Identifies the Amazon Lex V2 bot's language and locale.
public string? LocaleId { get; set; }
Property Value
Remarks
RespondsTo
Determines whether the Amazon Lex V2 bot responds to all standard messages.
public string? RespondsTo { get; set; }
Property Value
Remarks
WelcomeIntent
The name of the welcome intent configured in the Amazon Lex V2 bot.
public string? WelcomeIntent { get; set; }