Interface CfnCampaignPropsMixin.TelephonyOutboundConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignPropsMixin.TelephonyOutboundConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCampaignPropsMixin
@Stability(Stable)
public static interface CfnCampaignPropsMixin.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.mixins.preview.services.connectcampaignsv2.mixins.*;
TelephonyOutboundConfigProperty telephonyOutboundConfigProperty = TelephonyOutboundConfigProperty.builder()
.answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder()
.awaitAnswerMachinePrompt(false)
.enableAnswerMachineDetection(false)
.build())
.connectContactFlowId("connectContactFlowId")
.connectSourcePhoneNumber("connectSourcePhoneNumber")
.ringTimeout(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaignPropsMixin.TelephonyOutboundConfigPropertystatic final classAn implementation forCfnCampaignPropsMixin.TelephonyOutboundConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe answering machine detection configuration.default StringThe identifier of the published Amazon Connect contact flow.default StringThe Amazon Connect source phone number.default NumberThe ring timeout configuration for outbound calls.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnswerMachineDetectionConfig
The answering machine detection configuration.Returns union: either
IResolvableorCfnCampaignPropsMixin.AnswerMachineDetectionConfigProperty- See Also:
-
getConnectContactFlowId
The identifier of the published Amazon Connect contact flow.- See Also:
-
getConnectSourcePhoneNumber
The Amazon Connect source phone number.- See Also:
-
getRingTimeout
The ring timeout configuration for outbound calls.Specifies how long to wait for the call to be answered before timing out.
- See Also:
-
builder
-