Interface CfnCampaign.TelephonyOutboundModeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.TelephonyOutboundModeProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.TelephonyOutboundModeProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about telephony outbound mode.
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;
TelephonyOutboundModeProperty telephonyOutboundModeProperty = TelephonyOutboundModeProperty.builder()
.agentlessConfig(agentlessConfig)
.predictiveConfig(PredictiveConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.progressiveConfig(ProgressiveConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.TelephonyOutboundModePropertystatic final classAn implementation forCfnCampaign.TelephonyOutboundModeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentlessConfig
The agentless outbound mode configuration for telephony.- See Also:
-
getPredictiveConfig
Contains predictive outbound mode configuration.- See Also:
-
getProgressiveConfig
Contains progressive telephony outbound mode configuration.- See Also:
-
builder
-