interface KnowledgeBaseAssociationConfigurationDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.KnowledgeBaseAssociationConfigurationDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_KnowledgeBaseAssociationConfigurationDataProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.KnowledgeBaseAssociationConfigurationDataProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.KnowledgeBaseAssociationConfigurationDataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » KnowledgeBaseAssociationConfigurationDataProperty |
The data of the configuration for a KNOWLEDGE_BASE type Amazon Q in Connect Assistant Association.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const knowledgeBaseAssociationConfigurationDataProperty: wisdom_mixins.CfnAIAgentPropsMixin.KnowledgeBaseAssociationConfigurationDataProperty = {
contentTagFilter: {
andConditions: [{
key: 'key',
value: 'value',
}],
orConditions: [{
andConditions: [{
key: 'key',
value: 'value',
}],
tagCondition: {
key: 'key',
value: 'value',
},
}],
tagCondition: {
key: 'key',
value: 'value',
},
},
maxResults: 123,
overrideKnowledgeBaseSearchType: 'overrideKnowledgeBaseSearchType',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | IResolvable | Tag | An object that can be used to specify Tag conditions. |
| max | number | The maximum number of results to return per page. |
| override | string | The search type to be used against the Knowledge Base for this request. |
contentTagFilter?
Type:
IResolvable | Tag
(optional)
An object that can be used to specify Tag conditions.
maxResults?
Type:
number
(optional)
The maximum number of results to return per page.
overrideKnowledgeBaseSearchType?
Type:
string
(optional)
The search type to be used against the Knowledge Base for this request.
The values can be SEMANTIC which uses vector embeddings or HYBRID which use vector embeddings and raw text

.NET
Go
Java
Python
TypeScript