interface TelephonyOutboundModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.TelephonyOutboundModeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_TelephonyOutboundModeProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.TelephonyOutboundModeProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.TelephonyOutboundModeProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » TelephonyOutboundModeProperty |
Contains information about telephony outbound mode.
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 telephonyOutboundModeProperty: connectcampaignsv2.CfnCampaign.TelephonyOutboundModeProperty = {
agentlessConfig: agentlessConfig,
predictiveConfig: {
bandwidthAllocation: 123,
},
previewConfig: {
bandwidthAllocation: 123,
timeoutConfig: {
durationInSeconds: 123,
},
// the properties below are optional
agentActions: ['agentActions'],
},
progressiveConfig: {
bandwidthAllocation: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agentless | any | The agentless outbound mode configuration for telephony. |
| predictive | IResolvable | Predictive | Contains predictive outbound mode configuration. |
| preview | IResolvable | Preview | Contains preview outbound mode configuration. |
| progressive | IResolvable | Progressive | Contains progressive telephony outbound mode configuration. |
agentlessConfig?
Type:
any
(optional)
The agentless outbound mode configuration for telephony.
predictiveConfig?
Type:
IResolvable | Predictive
(optional)
Contains predictive outbound mode configuration.
previewConfig?
Type:
IResolvable | Preview
(optional)
Contains preview outbound mode configuration.
progressiveConfig?
Type:
IResolvable | Progressive
(optional)
Contains progressive telephony outbound mode configuration.

.NET
Go
Java
Python
TypeScript