interface AgentKnowledgeBaseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentPropsMixin_AgentKnowledgeBaseProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentPropsMixin » AgentKnowledgeBaseProperty |
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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const agentKnowledgeBaseProperty: bedrock_mixins.CfnAgentPropsMixin.AgentKnowledgeBaseProperty = {
description: 'description',
knowledgeBaseId: 'knowledgeBaseId',
knowledgeBaseState: 'knowledgeBaseState',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the association between the agent and the knowledge base. |
| knowledge | string | The unique identifier of the association between the agent and the knowledge base. |
| knowledge | string | Specifies whether to use the knowledge base or not when sending an InvokeAgent request. |
description?
Type:
string
(optional)
The description of the association between the agent and the knowledge base.
knowledgeBaseId?
Type:
string
(optional)
The unique identifier of the association between the agent and the knowledge base.
knowledgeBaseState?
Type:
string
(optional)
Specifies whether to use the knowledge base or not when sending an InvokeAgent request.

.NET
Go
Java
Python
TypeScript