interface CfnCampaignMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaigns.Mixins.CfnCampaignMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaigns/mixins#CfnCampaignMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaigns.mixins.CfnCampaignMixinProps |
Python | aws_cdk.mixins_preview.aws_connectcampaigns.mixins.CfnCampaignMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaigns » mixins » CfnCampaignMixinProps |
Properties for CfnCampaignPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connectcampaigns_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaigns';
const cfnCampaignMixinProps: connectcampaigns_mixins.CfnCampaignMixinProps = {
connectInstanceArn: 'connectInstanceArn',
dialerConfig: {
agentlessDialerConfig: {
dialingCapacity: 123,
},
predictiveDialerConfig: {
bandwidthAllocation: 123,
dialingCapacity: 123,
},
progressiveDialerConfig: {
bandwidthAllocation: 123,
dialingCapacity: 123,
},
},
name: 'name',
outboundCallConfig: {
answerMachineDetectionConfig: {
awaitAnswerMachinePrompt: false,
enableAnswerMachineDetection: false,
},
connectContactFlowArn: 'connectContactFlowArn',
connectQueueArn: 'connectQueueArn',
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | string | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| dialer | IResolvable | Dialer | Contains information about the dialer configuration. |
| name? | string | The name of the campaign. |
| outbound | IResolvable | Outbound | Contains information about the outbound call configuration. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
connectInstanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Connect instance.
dialerConfig?
Type:
IResolvable | Dialer
(optional)
Contains information about the dialer configuration.
name?
Type:
string
(optional)
The name of the campaign.
outboundCallConfig?
Type:
IResolvable | Outbound
(optional)
Contains information about the outbound call configuration.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript