interface EmailOutboundConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.EmailOutboundConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_EmailOutboundConfigProperty | 
|  Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.EmailOutboundConfigProperty | 
|  Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.EmailOutboundConfigProperty | 
|  TypeScript | aws-cdk-lib»aws_connectcampaignsv2»CfnCampaign»EmailOutboundConfigProperty | 
The outbound configuration for email.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connectcampaignsv2 as connectcampaignsv2 } from 'aws-cdk-lib';
const emailOutboundConfigProperty: connectcampaignsv2.CfnCampaign.EmailOutboundConfigProperty = {
  connectSourceEmailAddress: 'connectSourceEmailAddress',
  wisdomTemplateArn: 'wisdomTemplateArn',
  // the properties below are optional
  sourceEmailAddressDisplayName: 'sourceEmailAddressDisplayName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| connect | string | The Amazon Connect source email address. | 
| wisdom | string | The Amazon Resource Name (ARN) of the Amazon Q in Connect template. | 
| source | string | The display name for the Amazon Connect source email address. | 
connectSourceEmailAddress
Type:
string
The Amazon Connect source email address.
wisdomTemplateArn
Type:
string
The Amazon Resource Name (ARN) of the Amazon Q in Connect template.
sourceEmailAddressDisplayName?
Type:
string
(optional)
The display name for the Amazon Connect source email address.
