Interface CfnAgent.AgentKnowledgeBaseProperty

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

@Stability(Stable) public static interface CfnAgent.AgentKnowledgeBaseProperty extends software.amazon.jsii.JsiiSerializable
Contains details about a knowledge base that is associated with an agent.

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.*;
 AgentKnowledgeBaseProperty agentKnowledgeBaseProperty = AgentKnowledgeBaseProperty.builder()
         .description("description")
         .knowledgeBaseId("knowledgeBaseId")
         // the properties below are optional
         .knowledgeBaseState("knowledgeBaseState")
         .build();
 

See Also: