interface CommunicationLimitsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.CommunicationLimitsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_CommunicationLimitsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.CommunicationLimitsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.CommunicationLimitsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » CommunicationLimitsConfigProperty |
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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const communicationLimitsConfigProperty: connectcampaignsv2.CfnCampaignPropsMixin.CommunicationLimitsConfigProperty = {
allChannelsSubtypes: {
communicationLimitList: [{
frequency: 123,
maxCountPerRecipient: 123,
unit: 'unit',
}],
},
instanceLimitsHandling: 'instanceLimitsHandling',
};
Properties
| Name | Type | Description |
|---|---|---|
| all | IResolvable | Communication | The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign. |
| instance | string | Opt-in or Opt-out from instance-level limits. |
allChannelsSubtypes?
Type:
IResolvable | Communication
(optional)
The CommunicationLimits that apply to all channel subtypes defined in an outbound campaign.
instanceLimitsHandling?
Type:
string
(optional)
Opt-in or Opt-out from instance-level limits.

.NET
Go
Java
Python
TypeScript