Show / Hide Table of Contents

Class CfnCampaign.DialerConfigProperty

Contains dialer configuration for an outbound campaign.

Inheritance
object
CfnCampaign.DialerConfigProperty
Implements
CfnCampaign.IDialerConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-agentlessdialerconfig

PredictiveDialerConfig

The configuration of the predictive dialer.

public object? PredictiveDialerConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-predictivedialerconfig

ProgressiveDialerConfig

The configuration of the progressive dialer.

public object? ProgressiveDialerConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-dialerconfig.html#cfn-connectcampaigns-campaign-dialerconfig-progressivedialerconfig

Implements

CfnCampaign.IDialerConfigProperty
Back to top Generated by DocFX