interface OutboundCallConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaigns.Mixins.CfnCampaignPropsMixin.OutboundCallConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaigns/mixins#CfnCampaignPropsMixin_OutboundCallConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaigns.mixins.CfnCampaignPropsMixin.OutboundCallConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaigns.mixins.CfnCampaignPropsMixin.OutboundCallConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaigns » mixins » CfnCampaignPropsMixin » OutboundCallConfigProperty |
Contains outbound call configuration for an outbound campaign.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connectcampaigns_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaigns';
const outboundCallConfigProperty: connectcampaigns_mixins.CfnCampaignPropsMixin.OutboundCallConfigProperty = {
answerMachineDetectionConfig: {
awaitAnswerMachinePrompt: false,
enableAnswerMachineDetection: false,
},
connectContactFlowArn: 'connectContactFlowArn',
connectQueueArn: 'connectQueueArn',
connectSourcePhoneNumber: 'connectSourcePhoneNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| answer | IResolvable | Answer | Whether answering machine detection has been enabled. |
| connect | string | The Amazon Resource Name (ARN) of the flow. |
| connect | string | The Amazon Resource Name (ARN) of the queue. |
| connect | string | The phone number associated with the outbound call. |
answerMachineDetectionConfig?
Type:
IResolvable | Answer
(optional)
Whether answering machine detection has been enabled.
connectContactFlowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow.
connectQueueArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the queue.
connectSourcePhoneNumber?
Type:
string
(optional)
The phone number associated with the outbound call.
This is the caller ID that is displayed to customers when an agent calls them.

.NET
Go
Java
Python
TypeScript