interface AssociationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.AssociationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_AssociationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.AssociationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.AssociationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » AssociationConfigurationProperty |
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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const associationConfigurationProperty: wisdom_mixins.CfnAIAgentPropsMixin.AssociationConfigurationProperty = {
associationConfigurationData: {
knowledgeBaseAssociationConfigurationData: {
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',
},
},
associationId: 'associationId',
associationType: 'associationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | IResolvable | Association | A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association. |
| association | string | The identifier of the association for this Association Configuration. |
| association | string | The type of the association for this Association Configuration. |
associationConfigurationData?
Type:
IResolvable | Association
(optional)
A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association.
associationId?
Type:
string
(optional)
The identifier of the association for this Association Configuration.
associationType?
Type:
string
(optional)
The type of the association for this Association Configuration.

.NET
Go
Java
Python
TypeScript