@Stability(value=Stable)
public static interface CfnCampaign.CampaignEventFilterProperty
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.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 Object |
getDimensions()
The dimension settings of the event filter for the campaign.
|
default String |
getFilterType()
The type of event that causes the campaign to be sent.
|
@Stability(value=Stable) @Nullable default Object getDimensions()
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) static CfnCampaign.CampaignEventFilterProperty.Builder builder()
Copyright © 2022. All rights reserved.