Interface CfnCampaignPropsMixin.CommunicationLimitsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignPropsMixin.CommunicationLimitsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaignPropsMixin
@Stability(Stable)
public static interface CfnCampaignPropsMixin.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.cfnpropertymixins.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 forCfnCampaignPropsMixin.CommunicationLimitsConfigPropertystatic final classAn implementation forCfnCampaignPropsMixin.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
IResolvableorCfnCampaignPropsMixin.CommunicationLimitsProperty- See Also:
-
getInstanceLimitsHandling
Opt-in or Opt-out from instance-level limits.- See Also:
-
builder
-