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