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())
.previewConfig(PreviewConfigProperty.builder()
.bandwidthAllocation(123)
.timeoutConfig(TimeoutConfigProperty.builder()
.durationInSeconds(123)
.build())
// the properties below are optional
.agentActions(List.of("agentActions"))
.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
Modifier and TypeMethodDescriptionbuilder()default ObjectThe agentless outbound mode configuration for telephony.default ObjectContains predictive outbound mode configuration.default ObjectContains preview outbound mode configuration.default ObjectContains progressive telephony outbound mode configuration.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.Returns union: either
IResolvableorCfnCampaign.PredictiveConfigProperty- See Also:
-
getPreviewConfig
Contains preview outbound mode configuration.Returns union: either
IResolvableorCfnCampaign.PreviewConfigProperty- See Also:
-
getProgressiveConfig
Contains progressive telephony outbound mode configuration.Returns union: either
IResolvableorCfnCampaign.ProgressiveConfigProperty- See Also:
-
builder
-