interface TelephonyOutboundConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.TelephonyOutboundConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_TelephonyOutboundConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.TelephonyOutboundConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.TelephonyOutboundConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » 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 { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
const telephonyOutboundConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.TelephonyOutboundConfigProperty = {
answerMachineDetectionConfig: {
awaitAnswerMachinePrompt: false,
enableAnswerMachineDetection: false,
},
connectContactFlowId: 'connectContactFlowId',
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
ringTimeout: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| answer | IResolvable | Answer | The answering machine detection configuration. |
| connect | string | The identifier of the published Amazon Connect contact flow. |
| connect | string | The Amazon Connect source phone number. |
| ring | number | The ring timeout configuration for outbound calls. |
answerMachineDetectionConfig?
Type:
IResolvable | Answer
(optional)
The answering machine detection configuration.
connectContactFlowId?
Type:
string
(optional)
The identifier of the published Amazon Connect contact flow.
connectSourcePhoneNumber?
Type:
string
(optional)
The Amazon Connect source phone number.
ringTimeout?
Type:
number
(optional)
The ring timeout configuration for outbound calls.
Specifies how long to wait for the call to be answered before timing out.

.NET
Go
Java
Python
TypeScript