Class CfnFlowVersion.LexFlowNodeConfigurationProperty
Contains configurations for a Lex node in the flow.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlowVersion.LexFlowNodeConfigurationProperty : CfnFlowVersion.ILexFlowNodeConfigurationProperty
Syntax (vb)
Public Class CfnFlowVersion.LexFlowNodeConfigurationProperty Implements CfnFlowVersion.ILexFlowNodeConfigurationProperty
Remarks
You specify a Amazon Lex bot to invoke. This node takes an utterance as the input and returns as the output the intent identified by the Amazon Lex bot. For more information, see Node types in a flow in the Amazon Bedrock User Guide.
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.AWS.Bedrock;
var lexFlowNodeConfigurationProperty = new LexFlowNodeConfigurationProperty {
BotAliasArn = "botAliasArn",
LocaleId = "localeId"
};
Synopsis
Constructors
| LexFlowNodeConfigurationProperty() | Contains configurations for a Lex node in the flow. |
Properties
| BotAliasArn | The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke. |
| LocaleId | The Region to invoke the Amazon Lex bot in. |
Constructors
LexFlowNodeConfigurationProperty()
Contains configurations for a Lex node in the flow.
public LexFlowNodeConfigurationProperty()
Remarks
You specify a Amazon Lex bot to invoke. This node takes an utterance as the input and returns as the output the intent identified by the Amazon Lex bot. For more information, see Node types in a flow in the Amazon Bedrock User Guide.
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.AWS.Bedrock;
var lexFlowNodeConfigurationProperty = new LexFlowNodeConfigurationProperty {
BotAliasArn = "botAliasArn",
LocaleId = "localeId"
};
Properties
BotAliasArn
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
public string BotAliasArn { get; set; }
Property Value
Remarks
LocaleId
The Region to invoke the Amazon Lex bot in.
public string LocaleId { get; set; }