Interface CfnCampaign.CommunicationLimitsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.CommunicationLimitsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.CommunicationLimitsConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains the communication limits configuration for an outbound campaign.
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.*;
CommunicationLimitsConfigProperty communicationLimitsConfigProperty = CommunicationLimitsConfigProperty.builder()
.allChannelsSubtypes(CommunicationLimitsProperty.builder()
.communicationLimitList(List.of(CommunicationLimitProperty.builder()
.frequency(123)
.maxCountPerRecipient(123)
.unit("unit")
.build()))
.build())
.instanceLimitsHandling("instanceLimitsHandling")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.CommunicationLimitsConfigPropertystatic final classAn implementation forCfnCampaign.CommunicationLimitsConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllChannelsSubtypes
The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign.Returns union: either
IResolvableorCfnCampaign.CommunicationLimitsProperty- See Also:
-
getInstanceLimitsHandling
Opt-in or Opt-out from instance-level limits.- See Also:
-
builder
-