interface ChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_ChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.ChannelSubtypeConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » 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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
declare const agentlessConfig: any;
const channelSubtypeConfigProperty: connectcampaignsv2.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