interface CommunicationLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.CommunicationLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_CommunicationLimitsProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.CommunicationLimitsProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.CommunicationLimitsProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » CommunicationLimitsProperty |
Contains information about communication limits.
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-lib';
const communicationLimitsProperty: connectcampaignsv2.CfnCampaign.CommunicationLimitsProperty = {
communicationLimitList: [{
frequency: 123,
maxCountPerRecipient: 123,
unit: 'unit',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| communication | IResolvable | (IResolvable | Communication)[] | The list of CommunicationLimits. |
communicationLimitList?
Type:
IResolvable | (IResolvable | Communication)[]
(optional)
The list of CommunicationLimits.

.NET
Go
Java
Python
TypeScript