Interface CfnCampaign.EventDimensionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.EventDimensionsProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.EventDimensionsProperty extends software.amazon.jsii.JsiiSerializable
Specifies the dimensions for an event filter that determines when a campaign is sent or a journey activity is performed.

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;
 EventDimensionsProperty eventDimensionsProperty = EventDimensionsProperty.builder()
         .attributes(attributes)
         .eventType(SetDimensionProperty.builder()
                 .dimensionType("dimensionType")
                 .values(List.of("values"))
                 .build())
         .metrics(metrics)
         .build();
 

See Also: