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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowVersion.LexFlowNodeConfigurationProperty
static final class
An implementation forCfnFlowVersion.LexFlowNodeConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.The Region to invoke the Amazon Lex bot in.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBotAliasArn
The Amazon Resource Name (ARN) of the Amazon Lex bot alias to invoke.- See Also:
-
getLocaleId
The Region to invoke the Amazon Lex bot in.- See Also:
-
builder
-