Show / Hide Table of Contents

Interface CfnCampaign.IEventDimensionsProperty

Specifies the dimensions for an event filter that determines when a campaign is sent or a journey activity is performed.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-eventdimensions.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 eventDimensionsProperty = new EventDimensionsProperty {
                 Attributes = attributes,
                 EventType = new SetDimensionProperty {
                     DimensionType = "dimensionType",
                     Values = new [] { "values" }
                 },
                 Metrics = metrics
             };

Synopsis

Properties

Attributes

One or more custom attributes that your application reports to Amazon Pinpoint.

EventType

The name of the event that causes the campaign to be sent or the journey activity to be performed.

Metrics

One or more custom metrics that your application reports to Amazon Pinpoint .

Properties

Attributes

One or more custom attributes that your application reports to Amazon Pinpoint.

object? Attributes { get; }
Property Value

object

Remarks

You can use these attributes as selection criteria when you create an event filter.

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

EventType

The name of the event that causes the campaign to be sent or the journey activity to be performed.

object? EventType { get; }
Property Value

object

Remarks

This can be a standard event that Amazon Pinpoint generates, such as _email.delivered or _custom.delivered . For campaigns, this can also be a custom event that's specific to your application. For information about standard events, see Streaming Amazon Pinpoint Events in the Amazon Pinpoint Developer Guide .

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

Metrics

One or more custom metrics that your application reports to Amazon Pinpoint .

object? Metrics { get; }
Property Value

object

Remarks

You can use these metrics as selection criteria when you create an event filter.

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

Back to top Generated by DocFX