Class CfnCampaignMixinProps
Properties for CfnCampaignPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ConnectCampaigns.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCampaignMixinProps : ICfnCampaignMixinProps
Syntax (vb)
Public Class CfnCampaignMixinProps Implements ICfnCampaignMixinProps
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.Mixins.Preview.AWS.ConnectCampaigns.Mixins;
var cfnCampaignMixinProps = new CfnCampaignMixinProps {
ConnectInstanceArn = "connectInstanceArn",
DialerConfig = new DialerConfigProperty {
AgentlessDialerConfig = new AgentlessDialerConfigProperty {
DialingCapacity = 123
},
PredictiveDialerConfig = new PredictiveDialerConfigProperty {
BandwidthAllocation = 123,
DialingCapacity = 123
},
ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
BandwidthAllocation = 123,
DialingCapacity = 123
}
},
Name = "name",
OutboundCallConfig = new OutboundCallConfigProperty {
AnswerMachineDetectionConfig = new AnswerMachineDetectionConfigProperty {
AwaitAnswerMachinePrompt = false,
EnableAnswerMachineDetection = false
},
ConnectContactFlowArn = "connectContactFlowArn",
ConnectQueueArn = "connectQueueArn",
ConnectSourcePhoneNumber = "connectSourcePhoneNumber"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnCampaignMixinProps() | Properties for CfnCampaignPropsMixin. |
Properties
| ConnectInstanceArn | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| DialerConfig | Contains information about the dialer configuration. |
| Name | The name of the campaign. |
| OutboundCallConfig | Contains information about the outbound call configuration. |
| Tags | The tags used to organize, track, or control access for this resource. |
Constructors
CfnCampaignMixinProps()
Properties for CfnCampaignPropsMixin.
public CfnCampaignMixinProps()
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.Mixins.Preview.AWS.ConnectCampaigns.Mixins;
var cfnCampaignMixinProps = new CfnCampaignMixinProps {
ConnectInstanceArn = "connectInstanceArn",
DialerConfig = new DialerConfigProperty {
AgentlessDialerConfig = new AgentlessDialerConfigProperty {
DialingCapacity = 123
},
PredictiveDialerConfig = new PredictiveDialerConfigProperty {
BandwidthAllocation = 123,
DialingCapacity = 123
},
ProgressiveDialerConfig = new ProgressiveDialerConfigProperty {
BandwidthAllocation = 123,
DialingCapacity = 123
}
},
Name = "name",
OutboundCallConfig = new OutboundCallConfigProperty {
AnswerMachineDetectionConfig = new AnswerMachineDetectionConfigProperty {
AwaitAnswerMachinePrompt = false,
EnableAnswerMachineDetection = false
},
ConnectContactFlowArn = "connectContactFlowArn",
ConnectQueueArn = "connectQueueArn",
ConnectSourcePhoneNumber = "connectSourcePhoneNumber"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ConnectInstanceArn
The Amazon Resource Name (ARN) of the Amazon Connect instance.
public string? ConnectInstanceArn { get; set; }
Property Value
Remarks
DialerConfig
Contains information about the dialer configuration.
public object? DialerConfig { get; set; }
Property Value
Remarks
Name
The name of the campaign.
public string? Name { get; set; }
Property Value
Remarks
OutboundCallConfig
Contains information about the outbound call configuration.
public object? OutboundCallConfig { get; set; }
Property Value
Remarks
Tags
The tags used to organize, track, or control access for this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For example, { "tags": {"key1":"value1", "key2":"value2"} }.