interface EmailOverviewAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIAgent.EmailOverviewAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIAgent_EmailOverviewAIAgentConfigurationProperty |
Java | software.amazon.awscdk.services.wisdom.CfnAIAgent.EmailOverviewAIAgentConfigurationProperty |
Python | aws_cdk.aws_wisdom.CfnAIAgent.EmailOverviewAIAgentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIAgent » EmailOverviewAIAgentConfigurationProperty |
Configuration settings for the EMAIL_OVERVIEW AI agent including prompt ID and locale settings.
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 emailOverviewAIAgentConfigurationProperty: wisdom.CfnAIAgent.EmailOverviewAIAgentConfigurationProperty = {
emailOverviewAiPromptId: 'emailOverviewAiPromptId',
locale: 'locale',
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The ID of the System AI prompt used for generating structured email conversation summaries. |
| locale? | string | The locale setting for language-specific email overview processing (for example, en_US, es_ES). |
emailOverviewAiPromptId?
Type:
string
(optional)
The ID of the System AI prompt used for generating structured email conversation summaries.
locale?
Type:
string
(optional)
The locale setting for language-specific email overview processing (for example, en_US, es_ES).

.NET
Go
Java
Python
TypeScript