interface AgentKnowledgeBaseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_AgentKnowledgeBaseProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.AgentKnowledgeBaseProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const agentKnowledgeBaseProperty: bedrock.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