Interface CfnCampaignProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:05.887Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaignProps
static final class
An implementation forCfnCampaignProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCampaignProps.Builder
builder()
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.- See Also:
-
getName
The name of the campaign.- See Also:
-
getOutboundCallConfig
Contains information about the outbound call configuration.- 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.Builder
ofCfnCampaignProps
-