Interface CfnCampaign.CampaignEventFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.CampaignEventFilterProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.CampaignEventFilterProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the settings for events that cause a campaign to be sent.
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.pinpoint.*;
Object attributes;
Object metrics;
CampaignEventFilterProperty campaignEventFilterProperty = CampaignEventFilterProperty.builder()
.dimensions(EventDimensionsProperty.builder()
.attributes(attributes)
.eventType(SetDimensionProperty.builder()
.dimensionType("dimensionType")
.values(List.of("values"))
.build())
.metrics(metrics)
.build())
.filterType("filterType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.CampaignEventFilterPropertystatic final classAn implementation forCfnCampaign.CampaignEventFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimensions
The dimension settings of the event filter for the campaign.- See Also:
-
getFilterType
The type of event that causes the campaign to be sent.Valid values are:
SYSTEM, sends the campaign when a system event occurs; and,ENDPOINT, sends the campaign when an endpoint event (Events resource) occurs.- See Also:
-
builder
-