Interface CfnCampaignProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:48.452Z")
@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)
// the properties below are optional
.awaitAnswerMachinePrompt(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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaignPropsstatic final classAn implementation forCfnCampaignProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCampaignProps.Builderbuilder()The Amazon Resource Name (ARN) of the Amazon Connect instance.Contains information about the dialer configuration.getName()The name of the campaign.Contains information about the outbound call configuration.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectInstanceArn
The Amazon Resource Name (ARN) of the Amazon Connect instance.- See Also:
-
getDialerConfig
Contains information about the dialer configuration.Returns union: either
IResolvableorCfnCampaign.DialerConfigProperty- See Also:
-
getName
The name of the campaign.- See Also:
-
getOutboundCallConfig
Contains information about the outbound call configuration.Returns union: either
IResolvableorCfnCampaign.OutboundCallConfigProperty- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnCampaignProps.BuilderofCfnCampaignProps
-