Interface CfnFlow.ILexFlowNodeConfigurationProperty
Contains configurations for a Lex node in the flow.
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFlow.ILexFlowNodeConfigurationProperty
Syntax (vb)
Public Interface CfnFlow.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
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. |
Properties
BotAliasArn
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.
string BotAliasArn { get; }
Property Value
Remarks
LocaleId
The Region to invoke the Amazon Lex bot in.
string LocaleId { get; }