Interface CfnCampaign.TelephonyOutboundConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.TelephonyOutboundConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.TelephonyOutboundConfigProperty
extends software.amazon.jsii.JsiiSerializable
The outbound configuration for telephony.
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.connectcampaignsv2.*;
TelephonyOutboundConfigProperty telephonyOutboundConfigProperty = TelephonyOutboundConfigProperty.builder()
.connectContactFlowId("connectContactFlowId")
// the properties below are optional
.answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder()
.enableAnswerMachineDetection(false)
// the properties below are optional
.awaitAnswerMachinePrompt(false)
.build())
.connectSourcePhoneNumber("connectSourcePhoneNumber")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.TelephonyOutboundConfigPropertystatic final classAn implementation forCfnCampaign.TelephonyOutboundConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectContactFlowId
The identifier of the published Amazon Connect contact flow.- See Also:
-
getAnswerMachineDetectionConfig
The answering machine detection configuration.Returns union: either
IResolvableorCfnCampaign.AnswerMachineDetectionConfigProperty- See Also:
-
getConnectSourcePhoneNumber
The Amazon Connect source phone number.- See Also:
-
builder
-