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") // the properties below are optional .answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder() .enableAnswerMachineDetection(false) .build()) .connectQueueArn("connectQueueArn") .connectSourcePhoneNumber("connectSourcePhoneNumber") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier 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.- See Also:
-
getAnswerMachineDetectionConfig
Whether answering machine detection has been enabled.- See Also:
-
getConnectQueueArn
The Amazon Resource Name (ARN) of the queue.- See Also:
-
getConnectSourcePhoneNumber
The phone number associated with the outbound call.This is the caller ID that is displayed to customers when an agent calls them.
- See Also:
-
builder
-