Interface CfnCampaign.SmsChannelSubtypeConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.SmsChannelSubtypeConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.SmsChannelSubtypeConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for the SMS 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;
SmsChannelSubtypeConfigProperty smsChannelSubtypeConfigProperty = SmsChannelSubtypeConfigProperty.builder()
.defaultOutboundConfig(SmsOutboundConfigProperty.builder()
.connectSourcePhoneNumberArn("connectSourcePhoneNumberArn")
.wisdomTemplateArn("wisdomTemplateArn")
.build())
.outboundMode(SmsOutboundModeProperty.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.SmsChannelSubtypeConfigPropertystatic final classAn implementation forCfnCampaign.SmsChannelSubtypeConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultOutboundConfig
The default SMS outbound configuration of an outbound campaign.- See Also:
-
getOutboundMode
The outbound mode of SMS for an outbound campaign.- See Also:
-
getCapacity
The allocation of SMS capacity between multiple running outbound campaigns.- See Also:
-
builder
-