Interface CfnCampaign.EmailChannelSubtypeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.EmailChannelSubtypeConfigProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.EmailChannelSubtypeConfigProperty extends software.amazon.jsii.JsiiSerializable
Email Channel Subtype config.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.connectcampaignsv2.*;
 Object agentlessConfig;
 EmailChannelSubtypeConfigProperty emailChannelSubtypeConfigProperty = EmailChannelSubtypeConfigProperty.builder()
         .defaultOutboundConfig(EmailOutboundConfigProperty.builder()
                 .connectSourceEmailAddress("connectSourceEmailAddress")
                 .wisdomTemplateArn("wisdomTemplateArn")
                 // the properties below are optional
                 .sourceEmailAddressDisplayName("sourceEmailAddressDisplayName")
                 .build())
         .outboundMode(EmailOutboundModeProperty.builder()
                 .agentlessConfig(agentlessConfig)
                 .build())
         // the properties below are optional
         .capacity(123)
         .build();
 

See Also: