Class CfnCampaign.DialerConfigProperty
Contains dialer configuration for an outbound campaign.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ConnectCampaigns
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.DialerConfigProperty : CfnCampaign.IDialerConfigProperty
Syntax (vb)
Public Class CfnCampaign.DialerConfigProperty Implements CfnCampaign.IDialerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ConnectCampaigns;
var dialerConfigProperty = new DialerConfigProperty {
AgentlessDialerConfig = new AgentlessDialerConfigProperty {
DialingCapacity = 123
},
PredictiveDialerConfig = new PredictiveDialerConfigProperty {
BandwidthAllocation = 123,
// the properties below are optional
DialingCapacity = 123
},
ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
BandwidthAllocation = 123,
// the properties below are optional
DialingCapacity = 123
}
};
Synopsis
Constructors
DialerConfigProperty() | Contains dialer configuration for an outbound campaign. |
Properties
AgentlessDialerConfig | The configuration of the agentless dialer. |
PredictiveDialerConfig | The configuration of the predictive dialer. |
ProgressiveDialerConfig | The configuration of the progressive dialer. |
Constructors
DialerConfigProperty()
Contains dialer configuration for an outbound campaign.
public DialerConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ConnectCampaigns;
var dialerConfigProperty = new DialerConfigProperty {
AgentlessDialerConfig = new AgentlessDialerConfigProperty {
DialingCapacity = 123
},
PredictiveDialerConfig = new PredictiveDialerConfigProperty {
BandwidthAllocation = 123,
// the properties below are optional
DialingCapacity = 123
},
ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
BandwidthAllocation = 123,
// the properties below are optional
DialingCapacity = 123
}
};
Properties
AgentlessDialerConfig
The configuration of the agentless dialer.
public object? AgentlessDialerConfig { get; set; }
Property Value
Remarks
PredictiveDialerConfig
The configuration of the predictive dialer.
public object? PredictiveDialerConfig { get; set; }
Property Value
Remarks
ProgressiveDialerConfig
The configuration of the progressive dialer.
public object? ProgressiveDialerConfig { get; set; }