Interface CfnCampaign.ChannelSubtypeConfigProperty

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

@Stability(Stable) public static interface CfnCampaign.ChannelSubtypeConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains channel subtype configuration for an outbound campaign.

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;
 ChannelSubtypeConfigProperty channelSubtypeConfigProperty = ChannelSubtypeConfigProperty.builder()
         .email(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())
         .sms(SmsChannelSubtypeConfigProperty.builder()
                 .defaultOutboundConfig(SmsOutboundConfigProperty.builder()
                         .connectSourcePhoneNumberArn("connectSourcePhoneNumberArn")
                         .wisdomTemplateArn("wisdomTemplateArn")
                         .build())
                 .outboundMode(SmsOutboundModeProperty.builder()
                         .agentlessConfig(agentlessConfig)
                         .build())
                 // the properties below are optional
                 .capacity(123)
                 .build())
         .telephony(TelephonyChannelSubtypeConfigProperty.builder()
                 .defaultOutboundConfig(TelephonyOutboundConfigProperty.builder()
                         .connectContactFlowId("connectContactFlowId")
                         // the properties below are optional
                         .answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder()
                                 .enableAnswerMachineDetection(false)
                                 // the properties below are optional
                                 .awaitAnswerMachinePrompt(false)
                                 .build())
                         .connectSourcePhoneNumber("connectSourcePhoneNumber")
                         .build())
                 .outboundMode(TelephonyOutboundModeProperty.builder()
                         .agentlessConfig(agentlessConfig)
                         .predictiveConfig(PredictiveConfigProperty.builder()
                                 .bandwidthAllocation(123)
                                 .build())
                         .progressiveConfig(ProgressiveConfigProperty.builder()
                                 .bandwidthAllocation(123)
                                 .build())
                         .build())
                 // the properties below are optional
                 .capacity(123)
                 .connectQueueId("connectQueueId")
                 .build())
         .build();
 

See Also: