Show / Hide Table of Contents

Interface CfnCampaign.ICampaignEventFilterProperty

Specifies the settings for events that cause a campaign to be sent.

Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICampaignEventFilterProperty
Syntax (vb)
Public Interface ICampaignEventFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html

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

Properties

Dimensions

The dimension settings of the event filter for the campaign.

FilterType

The type of event that causes the campaign to be sent.

Properties

Dimensions

The dimension settings of the event filter for the campaign.

virtual object Dimensions { get; }
Property Value

System.Object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-dimensions

FilterType

The type of event that causes the campaign to be sent.

virtual string FilterType { get; }
Property Value

System.String

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-campaigneventfilter.html#cfn-pinpoint-campaign-campaigneventfilter-filtertype

Back to top Generated by DocFX