Show / Hide Table of Contents

Class CfnFlowVersion.LexFlowNodeConfigurationProperty

Contains configurations for a Lex node in the flow.

Inheritance
object
CfnFlowVersion.LexFlowNodeConfigurationProperty
Implements
CfnFlowVersion.ILexFlowNodeConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-lexflownodeconfiguration.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-lexflownodeconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-lexflownodeconfiguration.html#cfn-bedrock-flowversion-lexflownodeconfiguration-botaliasarn

LocaleId

The Region to invoke the Amazon Lex bot in.

public string LocaleId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowversion-lexflownodeconfiguration.html#cfn-bedrock-flowversion-lexflownodeconfiguration-localeid

Implements

CfnFlowVersion.ILexFlowNodeConfigurationProperty
Back to top Generated by DocFX