public static interface CfnCampaign.CampaignEventFilterProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.CampaignEventFilterProperty.Builder
A builder for
CfnCampaign.CampaignEventFilterProperty |
static class |
CfnCampaign.CampaignEventFilterProperty.Jsii$Proxy
An implementation for
CfnCampaign.CampaignEventFilterProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.CampaignEventFilterProperty.Builder |
builder() |
default java.lang.Object |
getDimensions()
The dimension settings of the event filter for the campaign.
|
default java.lang.String |
getFilterType()
The type of event that causes the campaign to be sent.
|
default java.lang.Object getDimensions()
default java.lang.String getFilterType()
Valid values are: SYSTEM
, sends the campaign when a system event occurs; and, ENDPOINT
, sends the campaign when an endpoint event (Events resource) occurs.
static CfnCampaign.CampaignEventFilterProperty.Builder builder()