Interface CfnCampaign.IEventDimensionsProperty
Specifies the dimensions for an event filter that determines when a campaign is sent or a journey activity is performed.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEventDimensionsProperty
Syntax (vb)
Public Interface IEventDimensionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var attributes;
var metrics;
var eventDimensionsProperty = new EventDimensionsProperty {
Attributes = attributes,
EventType = new SetDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
Metrics = metrics
};
Synopsis
Properties
Attributes | One or more custom attributes that your application reports to Amazon Pinpoint. |
Event |
The name of the event that causes the campaign to be sent or the journey activity to be performed. |
Metrics | One or more custom metrics that your application reports to Amazon Pinpoint . |
Properties
Attributes
One or more custom attributes that your application reports to Amazon Pinpoint.
virtual object Attributes { get; }
Property Value
System.
Remarks
You can use these attributes as selection criteria when you create an event filter.
EventType
The name of the event that causes the campaign to be sent or the journey activity to be performed.
virtual object EventType { get; }
Property Value
System.
Remarks
This can be a standard event that Amazon Pinpoint generates, such as _email.delivered
or _custom.delivered
. For campaigns, this can also be a custom event that's specific to your application. For information about standard events, see Streaming Amazon Pinpoint Events in the Amazon Pinpoint Developer Guide .
Metrics
One or more custom metrics that your application reports to Amazon Pinpoint .
virtual object Metrics { get; }
Property Value
System.
Remarks
You can use these metrics as selection criteria when you create an event filter.