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
SMS 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;
 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: