Interface CfnCampaign.TelephonyChannelSubtypeConfigProperty

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

@Stability(Stable) public static interface CfnCampaign.TelephonyChannelSubtypeConfigProperty extends software.amazon.jsii.JsiiSerializable
Telephony 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;
 TelephonyChannelSubtypeConfigProperty telephonyChannelSubtypeConfigProperty = 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();
 

See Also: