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:
-
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
Default SMS outbound config.- See Also:
-
getOutboundMode
Email Outbound Mode.- See Also:
-
getCapacity
Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns.- See Also:
-
builder
-