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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.TelephonyChannelSubtypeConfigPropertystatic final classAn implementation forCfnCampaign.TelephonyChannelSubtypeConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultOutboundConfig
Default Telephone Outbound config.- See Also:
-
getOutboundMode
Telephony Outbound Mode.- See Also:
-
getCapacity
Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns.- See Also:
-
getConnectQueueId
The queue for the call.- See Also:
-
builder
-