interface TelephonyOutboundConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.TelephonyOutboundConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_TelephonyOutboundConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.TelephonyOutboundConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.TelephonyOutboundConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » TelephonyOutboundConfigProperty |
The outbound configuration for telephony.
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';
const telephonyOutboundConfigProperty: connectcampaignsv2.CfnCampaign.TelephonyOutboundConfigProperty = {
connectContactFlowId: 'connectContactFlowId',
// the properties below are optional
answerMachineDetectionConfig: {
enableAnswerMachineDetection: false,
// the properties below are optional
awaitAnswerMachinePrompt: false,
},
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | string | The identifier of the published Amazon Connect contact flow. |
| answer | IResolvable | Answer | The answering machine detection configuration. |
| connect | string | The Amazon Connect source phone number. |
connectContactFlowId
Type:
string
The identifier of the published Amazon Connect contact flow.
answerMachineDetectionConfig?
Type:
IResolvable | Answer
(optional)
The answering machine detection configuration.
connectSourcePhoneNumber?
Type:
string
(optional)
The Amazon Connect source phone number.

.NET
Go
Java
Python
TypeScript