Interface CfnCampaignPropsMixin.OutboundCallConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignPropsMixin.OutboundCallConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaignPropsMixin
@Stability(Stable)
public static interface CfnCampaignPropsMixin.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.cfnpropertymixins.services.connectcampaigns.*;
OutboundCallConfigProperty outboundCallConfigProperty = OutboundCallConfigProperty.builder()
.answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder()
.awaitAnswerMachinePrompt(false)
.enableAnswerMachineDetection(false)
.build())
.connectContactFlowArn("connectContactFlowArn")
.connectQueueArn("connectQueueArn")
.connectSourcePhoneNumber("connectSourcePhoneNumber")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaignPropsMixin.OutboundCallConfigPropertystatic final classAn implementation forCfnCampaignPropsMixin.OutboundCallConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether answering machine detection has been enabled.default StringThe Amazon Resource Name (ARN) of the flow.default StringThe Amazon Resource Name (ARN) of the queue.default StringThe phone number associated with the outbound call.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnswerMachineDetectionConfig
Whether answering machine detection has been enabled.Returns union: either
IResolvableorCfnCampaignPropsMixin.AnswerMachineDetectionConfigProperty- See Also:
-
getConnectContactFlowArn
The Amazon Resource Name (ARN) of the flow.- 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
-