interface EmailResponseAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_EmailResponseAIAgentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » EmailResponseAIAgentConfigurationProperty |
Configuration settings for the EMAIL_RESPONSE AI agent including prompts, locale, and knowledge base associations.
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 emailResponseAIAgentConfigurationProperty: wisdom_mixins.CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty = {
associationConfigurations: [{
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',
}],
emailQueryReformulationAiPromptId: 'emailQueryReformulationAiPromptId',
emailResponseAiPromptId: 'emailResponseAiPromptId',
locale: 'locale',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | IResolvable | (IResolvable | Association)[] | Configuration settings for knowledge base associations used by the email response agent. |
| email | string | The ID of the System AI prompt used for reformulating email queries to optimize knowledge base search for response generation. |
| email | string | The ID of the System AI prompt used for generating professional email responses based on knowledge base content. |
| locale? | string | The locale setting for language-specific email response generation (for example, en_US, es_ES). |
associationConfigurations?
Type:
IResolvable | (IResolvable | Association)[]
(optional)
Configuration settings for knowledge base associations used by the email response agent.
emailQueryReformulationAiPromptId?
Type:
string
(optional)
The ID of the System AI prompt used for reformulating email queries to optimize knowledge base search for response generation.
emailResponseAiPromptId?
Type:
string
(optional)
The ID of the System AI prompt used for generating professional email responses based on knowledge base content.
locale?
Type:
string
(optional)
The locale setting for language-specific email response generation (for example, en_US, es_ES).

.NET
Go
Java
Python
TypeScript