interface EmailOverviewAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.EmailOverviewAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_EmailOverviewAIAgentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.EmailOverviewAIAgentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.EmailOverviewAIAgentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const emailOverviewAIAgentConfigurationProperty: wisdom_mixins.CfnAIAgentPropsMixin.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