interface TelephonyChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.TelephonyChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_TelephonyChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.TelephonyChannelSubtypeConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.TelephonyChannelSubtypeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » 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 { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
declare const agentlessConfig: any;
const telephonyChannelSubtypeConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.TelephonyChannelSubtypeConfigProperty = {
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,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| 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?
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.
defaultOutboundConfig?
Type:
IResolvable | Telephony
(optional)
The default telephony outbound configuration of an outbound campaign.
outboundMode?
Type:
IResolvable | Telephony
(optional)
The outbound mode of telephony for an outbound campaign.

.NET
Go
Java
Python
TypeScript