interface ChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_ChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » ChannelSubtypeConfigProperty |
Contains channel subtype configuration for an outbound campaign.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
declare const agentlessConfig: any;
const channelSubtypeConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty = {
email: {
capacity: 123,
defaultOutboundConfig: {
connectSourceEmailAddress: 'connectSourceEmailAddress',
sourceEmailAddressDisplayName: 'sourceEmailAddressDisplayName',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
},
sms: {
capacity: 123,
defaultOutboundConfig: {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
},
telephony: {
capacity: 123,
connectQueueId: 'connectQueueId',
defaultOutboundConfig: {
answerMachineDetectionConfig: {
awaitAnswerMachinePrompt: false,
enableAnswerMachineDetection: false,
},
connectContactFlowId: 'connectContactFlowId',
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
ringTimeout: 123,
},
outboundMode: {
agentlessConfig: agentlessConfig,
predictiveConfig: {
bandwidthAllocation: 123,
},
previewConfig: {
agentActions: ['agentActions'],
bandwidthAllocation: 123,
timeoutConfig: {
durationInSeconds: 123,
},
},
progressiveConfig: {
bandwidthAllocation: 123,
},
},
},
whatsApp: {
capacity: 123,
defaultOutboundConfig: {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| email? | IResolvable | Email | The configuration of the email channel subtype. |
| sms? | IResolvable | Sms | The configuration of the SMS channel subtype. |
| telephony? | IResolvable | Telephony | The configuration of the telephony channel subtype. |
| whats | IResolvable | Whats | The configuration of the WhatsApp channel subtype. |
email?
Type:
IResolvable | Email
(optional)
The configuration of the email channel subtype.
sms?
Type:
IResolvable | Sms
(optional)
The configuration of the SMS channel subtype.
telephony?
Type:
IResolvable | Telephony
(optional)
The configuration of the telephony channel subtype.
whatsApp?
Type:
IResolvable | Whats
(optional)
The configuration of the WhatsApp channel subtype.

.NET
Go
Java
Python
TypeScript