Interface CfnCampaign.PreviewConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.PreviewConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.PreviewConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains preview outbound mode configuration.
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.*;
PreviewConfigProperty previewConfigProperty = PreviewConfigProperty.builder()
.bandwidthAllocation(123)
.timeoutConfig(TimeoutConfigProperty.builder()
.durationInSeconds(123)
.build())
// the properties below are optional
.agentActions(List.of("agentActions"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.PreviewConfigPropertystatic final classAn implementation forCfnCampaign.PreviewConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Agent actions for the preview outbound mode.Bandwidth allocation for the preview outbound mode.Countdown timer configuration for preview outbound mode.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBandwidthAllocation
Bandwidth allocation for the preview outbound mode.- See Also:
-
getTimeoutConfig
Countdown timer configuration for preview outbound mode.Returns union: either
IResolvableorCfnCampaign.TimeoutConfigProperty- See Also:
-
getAgentActions
Agent actions for the preview outbound mode.- See Also:
-
builder
-