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

.NET
Go
Java
Python
TypeScript