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
The configuration for the telephony 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;
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
Modifier and TypeMethodDescriptionbuilder()default NumberThe allocation of telephony capacity between multiple running outbound campaigns.default StringThe identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign.The default telephony outbound configuration of an outbound campaign.The outbound mode of telephony for an outbound campaign.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultOutboundConfig
The default telephony outbound configuration of an outbound campaign.- See Also:
-
getOutboundMode
The outbound mode of telephony for an outbound campaign.- See Also:
-
getCapacity
The allocation of telephony capacity between multiple running outbound campaigns.- See Also:
-
getConnectQueueId
The identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign.- See Also:
-
builder
-