Interface CfnCampaignPropsMixin.TelephonyOutboundModeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignPropsMixin.TelephonyOutboundModeProperty.Jsii$Proxy
- Enclosing class:
CfnCampaignPropsMixin
@Stability(Stable)
public static interface CfnCampaignPropsMixin.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.cfnpropertymixins.services.connectcampaignsv2.*;
Object agentlessConfig;
TelephonyOutboundModeProperty telephonyOutboundModeProperty = TelephonyOutboundModeProperty.builder()
.agentlessConfig(agentlessConfig)
.predictiveConfig(PredictiveConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.previewConfig(PreviewConfigProperty.builder()
.agentActions(List.of("agentActions"))
.bandwidthAllocation(123)
.timeoutConfig(TimeoutConfigProperty.builder()
.durationInSeconds(123)
.build())
.build())
.progressiveConfig(ProgressiveConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaignPropsMixin.TelephonyOutboundModePropertystatic final classAn implementation forCfnCampaignPropsMixin.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
IResolvableorCfnCampaignPropsMixin.PredictiveConfigProperty- See Also:
-
getPreviewConfig
Contains preview outbound mode configuration.Returns union: either
IResolvableorCfnCampaignPropsMixin.PreviewConfigProperty- See Also:
-
getProgressiveConfig
Contains progressive telephony outbound mode configuration.Returns union: either
IResolvableorCfnCampaignPropsMixin.ProgressiveConfigProperty- See Also:
-
builder
-