interface EmailOutboundConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.EmailOutboundConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_EmailOutboundConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.EmailOutboundConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.EmailOutboundConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » 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/cfn-property-mixins';
const emailOutboundConfigProperty: connectcampaignsv2.CfnCampaignPropsMixin.EmailOutboundConfigProperty = {
connectSourceEmailAddress: 'connectSourceEmailAddress',
sourceEmailAddressDisplayName: 'sourceEmailAddressDisplayName',
wisdomTemplateArn: 'wisdomTemplateArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | string | The Amazon Connect source email address. |
| source | string | The display name for the Amazon Connect source email address. |
| wisdom | string | The Amazon Resource Name (ARN) of the Amazon Q in Connect template. |
connectSourceEmailAddress?
Type:
string
(optional)
The Amazon Connect source email address.
sourceEmailAddressDisplayName?
Type:
string
(optional)
The display name for the Amazon Connect source email address.
wisdomTemplateArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Q in Connect template.

.NET
Go
Java
Python
TypeScript