interface TelephonyChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.TelephonyChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_TelephonyChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.TelephonyChannelSubtypeConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.TelephonyChannelSubtypeConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » TelephonyChannelSubtypeConfigProperty |
The configuration for the telephony channel subtype.
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-lib';
declare const agentlessConfig: any;
const telephonyChannelSubtypeConfigProperty: connectcampaignsv2.CfnCampaign.TelephonyChannelSubtypeConfigProperty = {
defaultOutboundConfig: {
connectContactFlowId: 'connectContactFlowId',
// the properties below are optional
answerMachineDetectionConfig: {
enableAnswerMachineDetection: false,
// the properties below are optional
awaitAnswerMachinePrompt: false,
},
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
ringTimeout: 123,
},
outboundMode: {
agentlessConfig: agentlessConfig,
predictiveConfig: {
bandwidthAllocation: 123,
},
previewConfig: {
bandwidthAllocation: 123,
timeoutConfig: {
durationInSeconds: 123,
},
// the properties below are optional
agentActions: ['agentActions'],
},
progressiveConfig: {
bandwidthAllocation: 123,
},
},
// the properties below are optional
capacity: 123,
connectQueueId: 'connectQueueId',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Telephony | The default telephony outbound configuration of an outbound campaign. |
| outbound | IResolvable | Telephony | The outbound mode of telephony for an outbound campaign. |
| capacity? | number | The allocation of telephony capacity between multiple running outbound campaigns. |
| connect | string | The identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign. |
defaultOutboundConfig
Type:
IResolvable | Telephony
The default telephony outbound configuration of an outbound campaign.
outboundMode
Type:
IResolvable | Telephony
The outbound mode of telephony for an outbound campaign.
capacity?
Type:
number
(optional)
The allocation of telephony capacity between multiple running outbound campaigns.
connectQueueId?
Type:
string
(optional)
The identifier of the Amazon Connect queue associated with telephony outbound requests of an outbound campaign.

.NET
Go
Java
Python
TypeScript