Interface CfnFlowVersion.LexFlowNodeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlowVersion.LexFlowNodeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFlowVersion

@Stability(Stable) public static interface CfnFlowVersion.LexFlowNodeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for a Lex node in the flow.

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 Amazon Bedrock works in the Amazon Bedrock User Guide.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 LexFlowNodeConfigurationProperty lexFlowNodeConfigurationProperty = LexFlowNodeConfigurationProperty.builder()
         .botAliasArn("botAliasArn")
         .localeId("localeId")
         .build();
 

See Also: