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: