Show / Hide Table of Contents

Class CfnCampaignPropsMixin.CampaignEventFilterProperty

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

Inheritance
object
CfnCampaignPropsMixin.CampaignEventFilterProperty
Implements
CfnCampaignPropsMixin.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.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

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.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

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.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

object

Remarks

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

Type union: either IResolvable or CfnCampaignPropsMixin.IEventDimensionsProperty

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

CfnCampaignPropsMixin.ICampaignEventFilterProperty
Back to top Generated by DocFX