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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.CampaignEventFilterProperty
static final class
An 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. -
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. -
builder
-