interface EntryLimitsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.EntryLimitsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_EntryLimitsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.EntryLimitsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.EntryLimitsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » EntryLimitsConfigProperty |
Entry limits config for a 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 entryLimitsConfigProperty: connectcampaignsv2.CfnCampaignPropsMixin.EntryLimitsConfigProperty = {
maxEntryCount: 123,
minEntryInterval: 'minEntryInterval',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | Maximum number of entries per participant. |
| min | string | Time duration in ISO 8601 format. |
maxEntryCount?
Type:
number
(optional)
Maximum number of entries per participant.
0 indicates unlimited entries.
minEntryInterval?
Type:
string
(optional)
Time duration in ISO 8601 format.

.NET
Go
Java
Python
TypeScript