Interface CfnCampaign.SourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.SourceProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.SourceProperty
extends software.amazon.jsii.JsiiSerializable
Contains source configuration.
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.connectcampaignsv2.*;
SourceProperty sourceProperty = SourceProperty.builder()
.customerProfilesSegmentArn("customerProfilesSegmentArn")
.eventTrigger(EventTriggerProperty.builder()
.customerProfilesDomainArn("customerProfilesDomainArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.SourcePropertystatic final classAn implementation forCfnCampaign.SourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomerProfilesSegmentArn
The Amazon Resource Name (ARN) of the Customer Profiles segment.- See Also:
-
getEventTrigger
The event trigger of the campaign.Returns union: either
IResolvableorCfnCampaign.EventTriggerProperty- See Also:
-
builder
- Returns:
- a
CfnCampaign.SourceProperty.BuilderofCfnCampaign.SourceProperty
-