interface PredictiveDialerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaigns.CfnCampaignPropsMixin.PredictiveDialerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaigns#CfnCampaignPropsMixin_PredictiveDialerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaigns.CfnCampaignPropsMixin.PredictiveDialerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaigns.CfnCampaignPropsMixin.PredictiveDialerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaigns » CfnCampaignPropsMixin » PredictiveDialerConfigProperty |
Contains predictive dialer 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_connectcampaigns as connectcampaigns } from '@aws-cdk/cfn-property-mixins';
const predictiveDialerConfigProperty: connectcampaigns.CfnCampaignPropsMixin.PredictiveDialerConfigProperty = {
bandwidthAllocation: 123,
dialingCapacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth | number | Bandwidth allocation for the predictive dialer. |
| dialing | number | The allocation of dialing capacity between multiple active campaigns. |
bandwidthAllocation?
Type:
number
(optional)
Bandwidth allocation for the predictive dialer.
dialingCapacity?
Type:
number
(optional)
The allocation of dialing capacity between multiple active campaigns.

.NET
Go
Java
Python
TypeScript