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: