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
The configuration for the email channel subtype.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.EmailChannelSubtypeConfigPropertystatic final classAn implementation forCfnCampaign.EmailChannelSubtypeConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultOutboundConfig
The default email outbound configuration of an outbound campaign.- See Also:
-
getOutboundMode
The outbound mode for email of an outbound campaign.- See Also:
-
getCapacity
The allocation of email capacity between multiple running outbound campaigns.- See Also:
-
builder
-