interface OutboundCallConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaigns.CfnCampaignPropsMixin.OutboundCallConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaigns#CfnCampaignPropsMixin_OutboundCallConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaigns.CfnCampaignPropsMixin.OutboundCallConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaigns.CfnCampaignPropsMixin.OutboundCallConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaigns » 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 { aws_connectcampaigns as connectcampaigns } from '@aws-cdk/cfn-property-mixins';
const outboundCallConfigProperty: connectcampaigns.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