Class CfnCampaign.CampaignEventFilterProperty
Specifies the settings for events that cause a campaign to be sent.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.CampaignEventFilterProperty : CfnCampaign.ICampaignEventFilterProperty
Syntax (vb)
Public Class CfnCampaign.CampaignEventFilterProperty Implements CfnCampaign.ICampaignEventFilterProperty
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 campaignEventFilterProperty = new CampaignEventFilterProperty {
Dimensions = new EventDimensionsProperty {
Attributes = attributes,
EventType = new SetDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
Metrics = metrics
},
FilterType = "filterType"
};
Synopsis
Constructors
CampaignEventFilterProperty() | Specifies the settings for events that cause a campaign to be sent. |
Properties
Dimensions | The dimension settings of the event filter for the campaign. |
FilterType | The type of event that causes the campaign to be sent. |
Constructors
CampaignEventFilterProperty()
Specifies the settings for events that cause a campaign to be sent.
public CampaignEventFilterProperty()
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 campaignEventFilterProperty = new CampaignEventFilterProperty {
Dimensions = new EventDimensionsProperty {
Attributes = attributes,
EventType = new SetDimensionProperty {
DimensionType = "dimensionType",
Values = new [] { "values" }
},
Metrics = metrics
},
FilterType = "filterType"
};
Properties
Dimensions
The dimension settings of the event filter for the campaign.
public object? Dimensions { get; set; }
Property Value
Remarks
FilterType
The type of event that causes the campaign to be sent.
public string? FilterType { get; set; }
Property Value
Remarks
Valid values are: SYSTEM
, sends the campaign when a system event occurs; and, ENDPOINT
, sends the campaign when an endpoint event (Events resource) occurs.