Interface CfnCampaign.OutboundCallConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.OutboundCallConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.OutboundCallConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connectcampaigns.*; OutboundCallConfigProperty outboundCallConfigProperty = OutboundCallConfigProperty.builder() .connectContactFlowArn("connectContactFlowArn") .connectQueueArn("connectQueueArn") // the properties below are optional .answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder() .enableAnswerMachineDetection(false) .build()) .connectSourcePhoneNumber("connectSourcePhoneNumber") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.OutboundCallConfigProperty
static final class
An implementation forCfnCampaign.OutboundCallConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectContactFlowArn
The Amazon Resource Name (ARN) of the flow. -
getConnectQueueArn
The Amazon Resource Name (ARN) of the queue. -
getAnswerMachineDetectionConfig
CfnCampaign.OutboundCallConfigProperty.AnswerMachineDetectionConfig
. -
getConnectSourcePhoneNumber
The phone number associated with the outbound call.This is the caller ID that is displayed to customers when an agent calls them.
-
builder
-