Show / Hide Table of Contents

Class CfnCampaign.CampaignEventFilterProperty

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

Inheritance
object
CfnCampaign.CampaignEventFilterProperty
Implements
CfnCampaign.ICampaignEventFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

Dimensions

The dimension settings of the event filter for the campaign.

public object? Dimensions { get; set; }
Property Value

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.

public string? FilterType { get; set; }
Property Value

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

Implements

CfnCampaign.ICampaignEventFilterProperty
Back to top Generated by DocFX