Class CfnCampaignPropsMixin.CampaignEventFilterProperty
Specifies the settings for events that cause a campaign to be sent.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.CampaignEventFilterProperty : CfnCampaignPropsMixin.ICampaignEventFilterProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.CampaignEventFilterProperty Implements CfnCampaignPropsMixin.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.Mixins.Preview.AWS.Pinpoint.Mixins;
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.Mixins.Preview.AWS.Pinpoint.Mixins;
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.