Interface CfnFlowVersion.KnowledgeBaseFlowNodeConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowVersion.KnowledgeBaseFlowNodeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for a knowledge base node in a flow.

This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. 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.*;
 KnowledgeBaseFlowNodeConfigurationProperty knowledgeBaseFlowNodeConfigurationProperty = KnowledgeBaseFlowNodeConfigurationProperty.builder()
         .knowledgeBaseId("knowledgeBaseId")
         // the properties below are optional
         .modelId("modelId")
         .build();
 

See Also: