Show / Hide Table of Contents

Class CfnCampaignPropsMixin.DialerConfigProperty

Contains dialer configuration for an outbound campaign.

Inheritance
object
CfnCampaignPropsMixin.DialerConfigProperty
Implements
CfnCampaignPropsMixin.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.Mixins.Preview.AWS.ConnectCampaigns.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.DialerConfigProperty : CfnCampaignPropsMixin.IDialerConfigProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.DialerConfigProperty Implements CfnCampaignPropsMixin.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.Mixins.Preview.AWS.ConnectCampaigns.Mixins;

             var dialerConfigProperty = new DialerConfigProperty {
                 AgentlessDialerConfig = new AgentlessDialerConfigProperty {
                     DialingCapacity = 123
                 },
                 PredictiveDialerConfig = new PredictiveDialerConfigProperty {
                     BandwidthAllocation = 123,
                     DialingCapacity = 123
                 },
                 ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
                     BandwidthAllocation = 123,
                     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.Mixins.Preview.AWS.ConnectCampaigns.Mixins;

             var dialerConfigProperty = new DialerConfigProperty {
                 AgentlessDialerConfig = new AgentlessDialerConfigProperty {
                     DialingCapacity = 123
                 },
                 PredictiveDialerConfig = new PredictiveDialerConfigProperty {
                     BandwidthAllocation = 123,
                     DialingCapacity = 123
                 },
                 ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
                     BandwidthAllocation = 123,
                     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

Type union: either IResolvable or CfnCampaignPropsMixin.IAgentlessDialerConfigProperty

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

Type union: either IResolvable or CfnCampaignPropsMixin.IPredictiveDialerConfigProperty

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

Type union: either IResolvable or CfnCampaignPropsMixin.IProgressiveDialerConfigProperty

Implements

CfnCampaignPropsMixin.IDialerConfigProperty
Back to top Generated by DocFX