Interface CfnCampaignProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaignProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:21.682Z") @Stability(Stable) public interface CfnCampaignProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCampaign.

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.*;
 CfnCampaignProps cfnCampaignProps = CfnCampaignProps.builder()
         .connectInstanceArn("connectInstanceArn")
         .dialerConfig(DialerConfigProperty.builder()
                 .agentlessDialerConfig(AgentlessDialerConfigProperty.builder()
                         .dialingCapacity(123)
                         .build())
                 .predictiveDialerConfig(PredictiveDialerConfigProperty.builder()
                         .bandwidthAllocation(123)
                         // the properties below are optional
                         .dialingCapacity(123)
                         .build())
                 .progressiveDialerConfig(ProgressiveDialerConfigProperty.builder()
                         .bandwidthAllocation(123)
                         // the properties below are optional
                         .dialingCapacity(123)
                         .build())
                 .build())
         .name("name")
         .outboundCallConfig(OutboundCallConfigProperty.builder()
                 .connectContactFlowArn("connectContactFlowArn")
                 // the properties below are optional
                 .answerMachineDetectionConfig(AnswerMachineDetectionConfigProperty.builder()
                         .enableAnswerMachineDetection(false)
                         .build())
                 .connectQueueArn("connectQueueArn")
                 .connectSourcePhoneNumber("connectSourcePhoneNumber")
                 .build())
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: