@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:45.505Z") @Stability(value=Stable) public interface CfnCampaignProps extends software.amazon.jsii.JsiiSerializable
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()
.predictiveDialerConfig(PredictiveDialerConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.progressiveDialerConfig(ProgressiveDialerConfigProperty.builder()
.bandwidthAllocation(123)
.build())
.build())
.name("name")
.outboundCallConfig(OutboundCallConfigProperty.builder()
.connectContactFlowArn("connectContactFlowArn")
.connectQueueArn("connectQueueArn")
// the properties below are optional
.connectSourcePhoneNumber("connectSourcePhoneNumber")
.build())
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCampaignProps.Builder
A builder for
CfnCampaignProps |
static class |
CfnCampaignProps.Jsii$Proxy
An implementation for
CfnCampaignProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCampaignProps.Builder |
builder() |
String |
getConnectInstanceArn()
`AWS::ConnectCampaigns::Campaign.ConnectInstanceArn`.
|
Object |
getDialerConfig()
`AWS::ConnectCampaigns::Campaign.DialerConfig`.
|
String |
getName()
`AWS::ConnectCampaigns::Campaign.Name`.
|
Object |
getOutboundCallConfig()
`AWS::ConnectCampaigns::Campaign.OutboundCallConfig`.
|
default List<CfnTag> |
getTags()
`AWS::ConnectCampaigns::Campaign.Tags`.
|
@Stability(value=Stable) @NotNull String getConnectInstanceArn()
@Stability(value=Stable) @NotNull Object getDialerConfig()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getOutboundCallConfig()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCampaignProps.Builder builder()
CfnCampaignProps.Builder of CfnCampaignPropsCopyright © 2022. All rights reserved.