interface AssociationConfigurationDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIAgent.AssociationConfigurationDataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIAgent_AssociationConfigurationDataProperty |
Java | software.amazon.awscdk.services.wisdom.CfnAIAgent.AssociationConfigurationDataProperty |
Python | aws_cdk.aws_wisdom.CfnAIAgent.AssociationConfigurationDataProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIAgent » AssociationConfigurationDataProperty |
A typed union of the data of the configuration for an 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 { aws_wisdom as wisdom } from 'aws-cdk-lib';
const associationConfigurationDataProperty: wisdom.CfnAIAgent.AssociationConfigurationDataProperty = {
knowledgeBaseAssociationConfigurationData: {
contentTagFilter: {
andConditions: [{
key: 'key',
// the properties below are optional
value: 'value',
}],
orConditions: [{
andConditions: [{
key: 'key',
// the properties below are optional
value: 'value',
}],
tagCondition: {
key: 'key',
// the properties below are optional
value: 'value',
},
}],
tagCondition: {
key: 'key',
// the properties below are optional
value: 'value',
},
},
maxResults: 123,
overrideKnowledgeBaseSearchType: 'overrideKnowledgeBaseSearchType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| knowledge | IResolvable | Knowledge | The data of the configuration for a KNOWLEDGE_BASE type Amazon Q in Connect Assistant Association. |
knowledgeBaseAssociationConfigurationData
Type:
IResolvable | Knowledge
The data of the configuration for a KNOWLEDGE_BASE type Amazon Q in Connect Assistant Association.

.NET
Go
Java
Python
TypeScript